Title: [143496] trunk/Source
Revision
143496
Author
[email protected]
Date
2013-02-20 13:31:15 -0800 (Wed, 20 Feb 2013)

Log Message

[Chromium] Move WebKitPlatformSupport declaration to Platform.h
https://bugs.webkit.org/show_bug.cgi?id=110262

Reviewed by Adam Barth.

In preparation for removing WebKitPlatformSupport.h entirely (once
downstream references to that file have been updated). Part of a
larger refactoring series; see tracking bug 82948.

Source/Platform:

* chromium/public/Platform.h:
(WebKitPlatformSupport):
(WebKit::WebKitPlatformSupport::~WebKitPlatformSupport):
(WebKit):

Source/WebKit/chromium:

* public/platform/WebKitPlatformSupport.h:

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (143495 => 143496)


--- trunk/Source/Platform/ChangeLog	2013-02-20 21:28:08 UTC (rev 143495)
+++ trunk/Source/Platform/ChangeLog	2013-02-20 21:31:15 UTC (rev 143496)
@@ -1,3 +1,19 @@
+2013-02-20  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Move WebKitPlatformSupport declaration to Platform.h
+        https://bugs.webkit.org/show_bug.cgi?id=110262
+
+        Reviewed by Adam Barth.
+
+        In preparation for removing WebKitPlatformSupport.h entirely (once
+        downstream references to that file have been updated). Part of a
+        larger refactoring series; see tracking bug 82948.
+
+        * chromium/public/Platform.h:
+        (WebKitPlatformSupport):
+        (WebKit::WebKitPlatformSupport::~WebKitPlatformSupport):
+        (WebKit):
+
 2013-02-19  Adrienne Walker  <[email protected]>
 
         Unreviewed, rolling out r143382 and r143401.

Modified: trunk/Source/Platform/chromium/public/Platform.h (143495 => 143496)


--- trunk/Source/Platform/chromium/public/Platform.h	2013-02-20 21:28:08 UTC (rev 143495)
+++ trunk/Source/Platform/chromium/public/Platform.h	2013-02-20 21:31:15 UTC (rev 143496)
@@ -485,6 +485,11 @@
     virtual ~Platform() { }
 };
 
+class WebKitPlatformSupport : public Platform {
+protected:
+    ~WebKitPlatformSupport() { }
+};
+
 } // namespace WebKit
 
 #endif

Modified: trunk/Source/WebKit/chromium/ChangeLog (143495 => 143496)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-20 21:28:08 UTC (rev 143495)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-20 21:31:15 UTC (rev 143496)
@@ -1,5 +1,18 @@
 2013-02-20  Mark Pilgrim  <[email protected]>
 
+        [Chromium] Move WebKitPlatformSupport declaration to Platform.h
+        https://bugs.webkit.org/show_bug.cgi?id=110262
+
+        Reviewed by Adam Barth.
+
+        In preparation for removing WebKitPlatformSupport.h entirely (once
+        downstream references to that file have been updated). Part of a
+        larger refactoring series; see tracking bug 82948.
+
+        * public/platform/WebKitPlatformSupport.h:
+
+2013-02-20  Mark Pilgrim  <[email protected]>
+
         [Chromium] Remove idbFactory from WebKitPlatformSupport
         https://bugs.webkit.org/show_bug.cgi?id=106457
 

Modified: trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h (143495 => 143496)


--- trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h	2013-02-20 21:28:08 UTC (rev 143495)
+++ trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h	2013-02-20 21:31:15 UTC (rev 143496)
@@ -28,18 +28,4 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef WebKitPlatformSupport_h
-#define WebKitPlatformSupport_h
-
 #include "../../../../Platform/chromium/public/Platform.h"
-
-namespace WebKit {
-
-class WebKitPlatformSupport : public Platform {
-protected:
-    ~WebKitPlatformSupport() { }
-};
-
-} // namespace WebKit
-
-#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to