Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(716)

Side by Side Diff: content/child/fileapi/webfilesystem_impl.h

Issue 23856002: SyncFS: Support resolveLocalFileSystemURL on SyncFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ 5 #ifndef CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ 6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 // webkit_glue::WorkerTaskRunner::Observer implementation. 55 // webkit_glue::WorkerTaskRunner::Observer implementation.
56 virtual void OnWorkerRunLoopStopped() OVERRIDE; 56 virtual void OnWorkerRunLoopStopped() OVERRIDE;
57 57
58 // WebFileSystem implementation. 58 // WebFileSystem implementation.
59 virtual void openFileSystem( 59 virtual void openFileSystem(
60 const WebKit::WebURL& storage_partition, 60 const WebKit::WebURL& storage_partition,
61 const WebKit::WebFileSystemType type, 61 const WebKit::WebFileSystemType type,
62 bool create, 62 bool create,
63 WebFileSystemCallbacksType); 63 WebFileSystemCallbacksType);
64 virtual void resolveURL(
65 const WebKit::WebURL& filesystem_url,
66 WebFileSystemCallbacksType) OVERRIDE;
64 virtual void deleteFileSystem( 67 virtual void deleteFileSystem(
65 const WebKit::WebURL& storage_partition, 68 const WebKit::WebURL& storage_partition,
66 const WebKit::WebFileSystemType type, 69 const WebKit::WebFileSystemType type,
67 WebFileSystemCallbacksType); 70 WebFileSystemCallbacksType);
68 virtual void move( 71 virtual void move(
69 const WebKit::WebURL& src_path, 72 const WebKit::WebURL& src_path,
70 const WebKit::WebURL& dest_path, 73 const WebKit::WebURL& dest_path,
71 WebFileSystemCallbacksType) OVERRIDE; 74 WebFileSystemCallbacksType) OVERRIDE;
72 virtual void copy( 75 virtual void copy(
73 const WebKit::WebURL& src_path, 76 const WebKit::WebURL& src_path,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 124
122 CallbacksMap callbacks_; 125 CallbacksMap callbacks_;
123 int next_callbacks_id_; 126 int next_callbacks_id_;
124 127
125 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl); 128 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl);
126 }; 129 };
127 130
128 } // namespace content 131 } // namespace content
129 132
130 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ 133 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698