Title: [100373] trunk/Source/WebCore
Revision
100373
Author
[email protected]
Date
2011-11-15 17:06:13 -0800 (Tue, 15 Nov 2011)

Log Message

Pointer Lock: Refactoring: PointerLock.idl: Dropping webkit prefix
https://bugs.webkit.org/show_bug.cgi?id=72431

Reviewed by Adam Barth.

* page/PointerLock.cpp:
(WebCore::PointerLock::lock):
(WebCore::PointerLock::unlock):
(WebCore::PointerLock::isLocked):
* page/PointerLock.h:
* page/PointerLock.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (100372 => 100373)


--- trunk/Source/WebCore/ChangeLog	2011-11-16 01:03:36 UTC (rev 100372)
+++ trunk/Source/WebCore/ChangeLog	2011-11-16 01:06:13 UTC (rev 100373)
@@ -1,3 +1,17 @@
+2011-11-15  Vincent Scheib  <[email protected]>
+
+        Pointer Lock: Refactoring: PointerLock.idl: Dropping webkit prefix
+        https://bugs.webkit.org/show_bug.cgi?id=72431
+
+        Reviewed by Adam Barth.
+
+        * page/PointerLock.cpp:
+        (WebCore::PointerLock::lock):
+        (WebCore::PointerLock::unlock):
+        (WebCore::PointerLock::isLocked):
+        * page/PointerLock.h:
+        * page/PointerLock.idl:
+
 2011-11-15  Nat Duca  <[email protected]>
 
         [chromium] Fuse MainThread and CCThread

Modified: trunk/Source/WebCore/page/PointerLock.cpp (100372 => 100373)


--- trunk/Source/WebCore/page/PointerLock.cpp	2011-11-16 01:03:36 UTC (rev 100372)
+++ trunk/Source/WebCore/page/PointerLock.cpp	2011-11-16 01:06:13 UTC (rev 100373)
@@ -37,17 +37,17 @@
 {
 }
 
-void PointerLock::webkitLock(Element* target, PassRefPtr<VoidCallback> successCallback, PassRefPtr<VoidCallback> failureCallback)
+void PointerLock::lock(Element* target, PassRefPtr<VoidCallback> successCallback, PassRefPtr<VoidCallback> failureCallback)
 {
     // FIXME: Implement
 }
 
-void PointerLock::webkitUnlock()
+void PointerLock::unlock()
 {
     // FIXME: Implement
 }
 
-bool PointerLock::webkitIsLocked()
+bool PointerLock::isLocked()
 {
     // FIXME: Implement
     return false;

Modified: trunk/Source/WebCore/page/PointerLock.h (100372 => 100373)


--- trunk/Source/WebCore/page/PointerLock.h	2011-11-16 01:03:36 UTC (rev 100372)
+++ trunk/Source/WebCore/page/PointerLock.h	2011-11-16 01:06:13 UTC (rev 100373)
@@ -41,9 +41,9 @@
 
     ~PointerLock();
 
-    void webkitLock(Element* target, PassRefPtr<VoidCallback> successCallback, PassRefPtr<VoidCallback> failureCallback);
-    void webkitUnlock();
-    bool webkitIsLocked();
+    void lock(Element* target, PassRefPtr<VoidCallback> successCallback, PassRefPtr<VoidCallback> failureCallback);
+    void unlock();
+    bool isLocked();
 
 private:
     PointerLock();

Modified: trunk/Source/WebCore/page/PointerLock.idl (100372 => 100373)


--- trunk/Source/WebCore/page/PointerLock.idl	2011-11-16 01:03:36 UTC (rev 100372)
+++ trunk/Source/WebCore/page/PointerLock.idl	2011-11-16 01:06:13 UTC (rev 100373)
@@ -28,9 +28,9 @@
         Conditional=POINTER_LOCK,
         OmitConstructor
     ] PointerLock {
-        void webkitLock(in Element target, in [Callback, Optional] VoidCallback successCallback, in [Callback, Optional] VoidCallback failureCallback);
-        void webkitUnlock();
-        boolean webkitIsLocked();
+        void lock(in Element target, in [Callback, Optional] VoidCallback successCallback, in [Callback, Optional] VoidCallback failureCallback);
+        void unlock();
+        boolean isLocked();
     };
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to