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

Unified Diff: chrome/browser/sync_file_system/mock_remote_change_processor.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/mock_remote_change_processor.h
diff --git a/chrome/browser/sync_file_system/mock_remote_change_processor.h b/chrome/browser/sync_file_system/mock_remote_change_processor.h
index a9af6759e8f128243183c04997383ff4164a420e..1740d77afb8383244f2ef7a8755c0e0c9b490b55 100644
--- a/chrome/browser/sync_file_system/mock_remote_change_processor.h
+++ b/chrome/browser/sync_file_system/mock_remote_change_processor.h
@@ -15,7 +15,7 @@ namespace base {
class FilePath;
}
-namespace fileapi {
+namespace storage {
class FileSystemURL;
}
@@ -28,19 +28,19 @@ class MockRemoteChangeProcessor : public RemoteChangeProcessor {
// RemoteChangeProcessor overrides.
MOCK_METHOD2(PrepareForProcessRemoteChange,
- void(const fileapi::FileSystemURL& url,
+ void(const storage::FileSystemURL& url,
const PrepareChangeCallback& callback));
MOCK_METHOD4(ApplyRemoteChange,
void(const FileChange& change,
const base::FilePath& local_path,
- const fileapi::FileSystemURL& url,
+ const storage::FileSystemURL& url,
const SyncStatusCallback& callback));
MOCK_METHOD3(FinalizeRemoteSync,
- void(const fileapi::FileSystemURL& url,
+ void(const storage::FileSystemURL& url,
bool clear_local_changes,
const base::Closure& completion_callback));
MOCK_METHOD3(RecordFakeLocalChange,
- void(const fileapi::FileSystemURL& url,
+ void(const storage::FileSystemURL& url,
const FileChange& change,
const SyncStatusCallback& callback));

Powered by Google App Engine
This is Rietveld 408576698