Chromium Code Reviews| Index: content/common/fileapi/webfilesystem_impl.h |
| =================================================================== |
| --- content/common/fileapi/webfilesystem_impl.h (revision 179208) |
| +++ content/common/fileapi/webfilesystem_impl.h (working copy) |
| @@ -60,9 +60,14 @@ |
| virtual WebKit::WebFileWriter* createFileWriter( |
| const WebKit::WebURL& path, WebKit::WebFileWriterClient*) OVERRIDE; |
| virtual void createSnapshotFileAndReadMetadata( |
| + const WebKit::WebURL& path, |
| + WebKit::WebFileSystemCallbacks*); |
|
kinuko
2013/01/31 06:37:03
is this going to have OVERRIDE once WK patch lands
michaeln
2013/01/31 21:41:10
I see all of the other methods in this class do, s
kinuko
2013/02/04 06:16:52
I'm fine with this approach unless no buildbots co
|
| + |
| + // DEPRECATED variant being replaced by the above. |
| + virtual void createSnapshotFileAndReadMetadata( |
| const WebKit::WebURL& blobURL, |
| const WebKit::WebURL& path, |
| - WebKit::WebFileSystemCallbacks*) OVERRIDE; |
| + WebKit::WebFileSystemCallbacks*); |
| }; |
| } // namespace content |