Title: [135170] trunk
Revision
135170
Author
sch...@chromium.org
Date
2012-11-19 09:51:10 -0800 (Mon, 19 Nov 2012)

Log Message

[Chromium] Remove WebKit::WebRuntimeFeatures::enablePointerLock.
https://bugs.webkit.org/show_bug.cgi?id=96946

Reviewed by Adam Barth.

The runtime flag functionality has already been removed.
Now that Chromium no longer has a compile dependency on this
API, it can be removed as well.

Source/WebKit/chromium:

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

Tools:

* DumpRenderTree/chromium/TestShell.cpp:
(TestShell::TestShell):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (135169 => 135170)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-11-19 17:36:40 UTC (rev 135169)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-11-19 17:51:10 UTC (rev 135170)
@@ -1,3 +1,18 @@
+2012-11-19  Vincent Scheib  <sch...@chromium.org>
+
+        [Chromium] Remove WebKit::WebRuntimeFeatures::enablePointerLock.
+        https://bugs.webkit.org/show_bug.cgi?id=96946
+
+        Reviewed by Adam Barth.
+
+        The runtime flag functionality has already been removed.
+        Now that Chromium no longer has a compile dependency on this
+        API, it can be removed as well.
+
+        * public/WebRuntimeFeatures.h:
+        (WebRuntimeFeatures):
+        * src/WebRuntimeFeatures.cpp:
+
 2012-11-19  Kihong Kwon  <kihong.k...@samsung.com>
 
         Add PROXIMITY_EVENTS feature

Modified: trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h (135169 => 135170)


--- trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h	2012-11-19 17:36:40 UTC (rev 135169)
+++ trunk/Source/WebKit/chromium/public/WebRuntimeFeatures.h	2012-11-19 17:51:10 UTC (rev 135170)
@@ -112,9 +112,6 @@
     WEBKIT_EXPORT static void enableFullScreenAPI(bool);
     WEBKIT_EXPORT static bool isFullScreenAPIEnabled();
 
-    // FIXME: Remove this API once chromium no longer has a compile dependency. http://crbug.com/160761
-    WEBKIT_EXPORT static void enablePointerLock(bool);
-
     WEBKIT_EXPORT static void enableMediaSource(bool);
     WEBKIT_EXPORT static bool isMediaSourceEnabled();
 

Modified: trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp (135169 => 135170)


--- trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp	2012-11-19 17:36:40 UTC (rev 135169)
+++ trunk/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp	2012-11-19 17:51:10 UTC (rev 135170)
@@ -377,12 +377,6 @@
 #endif
 }
 
-// FIXME: Remove this API once chromium no longer has a compile dependency. http://crbug.com/160761
-void WebRuntimeFeatures::enablePointerLock(bool enable)
-{
-    UNUSED_PARAM(enable);
-}
-
 void WebRuntimeFeatures::enableMediaSource(bool enable)
 {
 #if ENABLE(MEDIA_SOURCE)

Modified: trunk/Tools/ChangeLog (135169 => 135170)


--- trunk/Tools/ChangeLog	2012-11-19 17:36:40 UTC (rev 135169)
+++ trunk/Tools/ChangeLog	2012-11-19 17:51:10 UTC (rev 135170)
@@ -1,3 +1,17 @@
+2012-11-19  Vincent Scheib  <sch...@chromium.org>
+
+        [Chromium] Remove WebKit::WebRuntimeFeatures::enablePointerLock.
+        https://bugs.webkit.org/show_bug.cgi?id=96946
+
+        Reviewed by Adam Barth.
+
+        The runtime flag functionality has already been removed.
+        Now that Chromium no longer has a compile dependency on this
+        API, it can be removed as well.
+
+        * DumpRenderTree/chromium/TestShell.cpp:
+        (TestShell::TestShell):
+
 2012-11-19  Kihong Kwon  <kihong.k...@samsung.com>
 
         Add PROXIMITY_EVENTS feature

Modified: trunk/Tools/DumpRenderTree/chromium/TestShell.cpp (135169 => 135170)


--- trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2012-11-19 17:36:40 UTC (rev 135169)
+++ trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2012-11-19 17:51:10 UTC (rev 135170)
@@ -129,7 +129,6 @@
     WebRuntimeFeatures::enableDataTransferItems(true);
     WebRuntimeFeatures::enableDeviceMotion(false);
     WebRuntimeFeatures::enableGeolocation(true);
-    WebRuntimeFeatures::enablePointerLock(true);
     WebRuntimeFeatures::enableIndexedDatabase(true);
     WebRuntimeFeatures::enableInputTypeDateTime(true);
     WebRuntimeFeatures::enableInputTypeDateTimeLocal(true);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to