Changeset 143496 in webkit


Ignore:
Timestamp:
Feb 20, 2013 1:31:15 PM (11 years ago)
Author:
pilgrim@chromium.org
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:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/ChangeLog

    r143403 r143496  
     12013-02-20  Mark Pilgrim  <pilgrim@chromium.org>
     2
     3        [Chromium] Move WebKitPlatformSupport declaration to Platform.h
     4        https://bugs.webkit.org/show_bug.cgi?id=110262
     5
     6        Reviewed by Adam Barth.
     7
     8        In preparation for removing WebKitPlatformSupport.h entirely (once
     9        downstream references to that file have been updated). Part of a
     10        larger refactoring series; see tracking bug 82948.
     11
     12        * chromium/public/Platform.h:
     13        (WebKitPlatformSupport):
     14        (WebKit::WebKitPlatformSupport::~WebKitPlatformSupport):
     15        (WebKit):
     16
    1172013-02-19  Adrienne Walker  <enne@chromium.org>
    218
  • trunk/Source/Platform/chromium/public/Platform.h

    r143403 r143496  
    486486};
    487487
     488class WebKitPlatformSupport : public Platform {
     489protected:
     490    ~WebKitPlatformSupport() { }
     491};
     492
    488493} // namespace WebKit
    489494
  • trunk/Source/WebKit/chromium/ChangeLog

    r143473 r143496  
     12013-02-20  Mark Pilgrim  <pilgrim@chromium.org>
     2
     3        [Chromium] Move WebKitPlatformSupport declaration to Platform.h
     4        https://bugs.webkit.org/show_bug.cgi?id=110262
     5
     6        Reviewed by Adam Barth.
     7
     8        In preparation for removing WebKitPlatformSupport.h entirely (once
     9        downstream references to that file have been updated). Part of a
     10        larger refactoring series; see tracking bug 82948.
     11
     12        * public/platform/WebKitPlatformSupport.h:
     13
    1142013-02-20  Mark Pilgrim  <pilgrim@chromium.org>
    215
  • trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h

    r143473 r143496  
    2929 */
    3030
    31 #ifndef WebKitPlatformSupport_h
    32 #define WebKitPlatformSupport_h
    33 
    3431#include "../../../../Platform/chromium/public/Platform.h"
    35 
    36 namespace WebKit {
    37 
    38 class WebKitPlatformSupport : public Platform {
    39 protected:
    40     ~WebKitPlatformSupport() { }
    41 };
    42 
    43 } // namespace WebKit
    44 
    45 #endif
Note: See TracChangeset for help on using the changeset viewer.