⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 117766 in webkit


Ignore:
Timestamp:
May 21, 2012, 4:25:19 AM (14 years ago)
Author:
kinuko@chromium.org
Message:

Cleanup: Remove WebCore::revealFolderInOS() which is no longer used anywhere
https://bugs.webkit.org/show_bug.cgi?id=86993

Reviewed by Adam Barth.

Source/WebCore:

No new tests as this must be just removing dead code.

  • platform/FileSystem.h:
  • platform/chromium/FileSystemChromium.cpp:
  • platform/chromium/PlatformSupport.h:

(PlatformSupport):

Source/WebKit/chromium:

  • public/WebFileUtilities.h:

(WebFileUtilities):

  • src/PlatformSupport.cpp:
Location:
trunk/Source
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/chromium/public/WebFileUtilities.h

    r117520 r117766  
    4949    typedef int FileHandle;
    5050#endif
    51     virtual void revealFolderInOS(const WebString& path) { }
    5251    virtual bool fileExists(const WebString& path) { return false; }
    5352    virtual bool deleteFile(const WebString& path) { return false; }
  • trunk/Source/WebCore/ChangeLog

    r117755 r117766  
     12012-05-20  Kinuko Yasuda  <kinuko@chromium.org>
     2
     3        Cleanup: Remove WebCore::revealFolderInOS() which is no longer used anywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=86993
     5
     6        Reviewed by Adam Barth.
     7
     8        No new tests as this must be just removing dead code.
     9
     10        * platform/FileSystem.h:
     11        * platform/chromium/FileSystemChromium.cpp:
     12        * platform/chromium/PlatformSupport.h:
     13        (PlatformSupport):
     14
    1152012-05-21  Alexander Pavlov  <apavlov@chromium.org>
    216
  • trunk/Source/WebCore/platform/FileSystem.h

    r110360 r117766  
    152152#endif
    153153
    154 void revealFolderInOS(const String&);
    155154bool fileExists(const String&);
    156155bool deleteFile(const String&);
  • trunk/Source/WebCore/platform/chromium/FileSystemChromium.cpp

    r95901 r117766  
    5656{
    5757    return PlatformSupport::getFileModificationTime(path, result);
    58 }
    59 
    60 void revealFolderInOS(const String& path)
    61 {
    62     PlatformSupport::revealFolderInOS(path);
    6358}
    6459
  • trunk/Source/WebCore/platform/chromium/PlatformSupport.h

    r116840 r117766  
    123123
    124124    // File ---------------------------------------------------------------
    125     static void revealFolderInOS(const String&);
    126125    static bool fileExists(const String&);
    127126    static bool deleteFile(const String&);
  • trunk/Source/WebKit/chromium/ChangeLog

    r117745 r117766  
     12012-05-20  Kinuko Yasuda  <kinuko@chromium.org>
     2
     3        Cleanup: Remove WebCore::revealFolderInOS() which is no longer used anywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=86993
     5
     6        Reviewed by Adam Barth.
     7
     8        * public/WebFileUtilities.h:
     9        (WebFileUtilities):
     10        * src/PlatformSupport.cpp:
     11
    1122012-05-21  Adam Barth  <abarth@webkit.org>
    213
  • trunk/Source/WebKit/chromium/src/PlatformSupport.cpp

    r117538 r117766  
    318318{
    319319    return WebKit::Platform::current()->fileUtilities()->getFileSize(path, result);
    320 }
    321 
    322 void PlatformSupport::revealFolderInOS(const String& path)
    323 {
    324     WebKit::Platform::current()->fileUtilities()->revealFolderInOS(path);
    325320}
    326321
Note: See TracChangeset for help on using the changeset viewer.