Title: [129442] trunk/Source/WebKit/chromium
Revision
129442
Author
[email protected]
Date
2012-09-24 19:07:14 -0700 (Mon, 24 Sep 2012)

Log Message

[Chromium] Remove WebRuntimeFeatures::{enablePushState,isPushStateEnabled}
https://bugs.webkit.org/show_bug.cgi?id=97506

Reviewed by Adam Barth.

These methods have been no-ops since r127674. All Chromium code that
called them was removed with http://crrev.com/155205.

* public/WebRuntimeFeatures.h:
(WebRuntimeFeatures):
* src/WebRuntimeFeatures.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (129441 => 129442)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-09-25 01:48:49 UTC (rev 129441)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-09-25 02:07:14 UTC (rev 129442)
@@ -1,3 +1,17 @@
+2012-09-24  Mihai Parparita  <[email protected]>
+
+        [Chromium] Remove WebRuntimeFeatures::{enablePushState,isPushStateEnabled}
+        https://bugs.webkit.org/show_bug.cgi?id=97506
+
+        Reviewed by Adam Barth.
+
+        These methods have been no-ops since r127674. All Chromium code that
+        called them was removed with http://crrev.com/155205.
+
+        * public/WebRuntimeFeatures.h:
+        (WebRuntimeFeatures):
+        * src/WebRuntimeFeatures.cpp:
+
 2012-09-24  Mark Pilgrim  <[email protected]>
 
         [Chromium][Mac] Remove loadFont from PlatformSupport

Modified: trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h (129441 => 129442)


--- trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h	2012-09-25 01:48:49 UTC (rev 129441)
+++ trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h	2012-09-25 02:07:14 UTC (rev 129442)
@@ -76,10 +76,6 @@
     WEBKIT_EXPORT static void enableWebAudio(bool);
     WEBKIT_EXPORT static bool isWebAudioEnabled();
 
-    // TODO: Remove these (since they're no-ops) once Chromium code stops calling them.
-    WEBKIT_EXPORT static void enablePushState(bool);
-    WEBKIT_EXPORT static bool isPushStateEnabled(bool);
-
     WEBKIT_EXPORT static void enableTouch(bool);
     WEBKIT_EXPORT static bool isTouchEnabled();
 

Modified: trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp (129441 => 129442)


--- trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp	2012-09-25 01:48:49 UTC (rev 129441)
+++ trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp	2012-09-25 02:07:14 UTC (rev 129442)
@@ -204,15 +204,6 @@
 #endif
 }
 
-void WebRuntimeFeatures::enablePushState(bool)
-{
-}
-
-bool WebRuntimeFeatures::isPushStateEnabled(bool enable)
-{
-    return true;
-}
-
 void WebRuntimeFeatures::enableTouch(bool enable)
 {
 #if ENABLE(TOUCH_EVENTS)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to