Changeset 69609 in webkit


Ignore:
Timestamp:
Oct 12, 2010 3:05:53 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-12 Kavita Kanetkar <kkanetkar@chromium.org>

Reviewed by Dumitru Daniliuc.

[FileSystem] Add ability to pass a bool to create or not create root path while opening filesystem.
https://bugs.webkit.org/show_bug.cgi?id=47519

  • public/WebCommonWorkerClient.h: (WebKit::WebCommonWorkerClient::openFileSystem):
  • public/WebFrameClient.h: (WebKit::WebFrameClient::openFileSystem):
Location:
trunk/WebKit/chromium
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r69605 r69609  
     12010-10-12  Kavita Kanetkar  <kkanetkar@chromium.org>
     2
     3        Reviewed by Dumitru Daniliuc.
     4
     5        [FileSystem] Add ability to pass a bool to create or not create root path while opening filesystem.
     6        https://bugs.webkit.org/show_bug.cgi?id=47519
     7
     8        * public/WebCommonWorkerClient.h:
     9        (WebKit::WebCommonWorkerClient::openFileSystem):
     10        * public/WebFrameClient.h:
     11        (WebKit::WebFrameClient::openFileSystem):
     12
    1132010-10-12  James Robinson  <jamesr@chromium.org>
    214
  • trunk/WebKit/chromium/public/WebCommonWorkerClient.h

    r68222 r69609  
    8888
    8989    // Called on the main webkit thread before opening a file system.
     90    virtual void openFileSystem(WebFileSystem::Type, long long size, bool create, WebFileSystemCallbacks*)
     91    {
     92        WEBKIT_ASSERT_NOT_REACHED();
     93    }
     94
     95    // This will be removed once changes in chromium use the new method above.
    9096    virtual void openFileSystem(WebFileSystem::Type, long long size, WebFileSystemCallbacks*)
    9197    {
  • trunk/WebKit/chromium/public/WebFrameClient.h

    r68061 r69609  
    350350    // a name and root path for the requested FileSystem when the operation
    351351    // is completed successfully. WebFileSystemCallbacks::didFail() must be
    352     // called otherwise.
     352    // called otherwise. The create bool is for indicating whether or not to
     353    // create root path for file systems if it do not exist.
     354    virtual void openFileSystem(
     355        WebFrame*, WebFileSystem::Type, long long size,
     356        bool create, WebFileSystemCallbacks*) { }
     357
     358    // This method will be deleted once chromium uses the new method above.
    353359    virtual void openFileSystem(
    354360        WebFrame*, WebFileSystem::Type, long long size,
Note: See TracChangeset for help on using the changeset viewer.