Title: [102881] trunk/Source/WebKit/chromium
- Revision
- 102881
- Author
- [email protected]
- Date
- 2011-12-14 21:22:19 -0800 (Wed, 14 Dec 2011)
Log Message
Unreviewed, rolling out r102873.
http://trac.webkit.org/changeset/102873
https://bugs.webkit.org/show_bug.cgi?id=64434
Break the build
Patch by Kenichi Ishibashi <[email protected]> on 2011-12-14
* public/WebPlugin.h:
* src/WebPluginContainerImpl.cpp:
* src/WebPluginContainerImpl.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (102880 => 102881)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-12-15 05:20:25 UTC (rev 102880)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-12-15 05:22:19 UTC (rev 102881)
@@ -1,3 +1,15 @@
+2011-12-14 Kenichi Ishibashi <[email protected]>
+
+ Unreviewed, rolling out r102873.
+ http://trac.webkit.org/changeset/102873
+ https://bugs.webkit.org/show_bug.cgi?id=64434
+
+ Break the build
+
+ * public/WebPlugin.h:
+ * src/WebPluginContainerImpl.cpp:
+ * src/WebPluginContainerImpl.h:
+
2011-12-14 Nat Duca <[email protected]>
[chromium] Add inhibitDraw to CCScheduler and drop root impl to prevent background flash on tab restore
Modified: trunk/Source/WebKit/chromium/public/WebPlugin.h (102880 => 102881)
--- trunk/Source/WebKit/chromium/public/WebPlugin.h 2011-12-15 05:20:25 UTC (rev 102880)
+++ trunk/Source/WebKit/chromium/public/WebPlugin.h 2011-12-15 05:22:19 UTC (rev 102881)
@@ -58,11 +58,6 @@
virtual NPObject* scriptableObject() = 0;
- // Returns true if the form submission value is successfully obtained
- // from the plugin. The value would be associated with the name attribute
- // of the corresponding object element.
- virtual bool getFormValue(WebString&) { return false; }
-
virtual void paint(WebCanvas*, const WebRect&) = 0;
// Coordinates are relative to the containing window.
Modified: trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp (102880 => 102881)
--- trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp 2011-12-15 05:20:25 UTC (rev 102880)
+++ trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp 2011-12-15 05:22:19 UTC (rev 102881)
@@ -464,16 +464,6 @@
return m_webPlugin->scriptableObject();
}
-bool WebPluginContainerImpl::getFormValue(String& value)
-{
- WebString webValue;
- if (m_webPlugin->getFormValue(webValue)) {
- value = webValue;
- return true;
- }
- return false;
-}
-
void WebPluginContainerImpl::willDestroyPluginLoadObserver(WebPluginLoadObserver* observer)
{
size_t pos = m_pluginLoadObservers.find(observer);
Modified: trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.h (102880 => 102881)
--- trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.h 2011-12-15 05:20:25 UTC (rev 102880)
+++ trunk/Source/WebKit/chromium/src/WebPluginContainerImpl.h 2011-12-15 05:22:19 UTC (rev 102881)
@@ -38,7 +38,6 @@
#include <wtf/OwnPtr.h>
#include <wtf/PassRefPtr.h>
#include <wtf/Vector.h>
-#include <wtf/text/WTFString.h>
struct NPObject;
@@ -71,9 +70,6 @@
return adoptRef(new WebPluginContainerImpl(element, webPlugin));
}
- // PluginViewBase methods
- virtual bool getFormValue(String&);
-
// Widget methods
virtual void setFrameRect(const WebCore::IntRect&);
virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes