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

Side by Side Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.h

Issue 559063002: Remove webkit/browser/, point everything to storage/browser/ instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up DEPS per feedback Created 6 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
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 CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/callback_forward.h" 11 #include "base/callback_forward.h"
12 #include "base/files/file.h" 12 #include "base/files/file.h"
13 #include "base/files/scoped_temp_dir.h" 13 #include "base/files/scoped_temp_dir.h"
14 #include "base/observer_list_threadsafe.h" 14 #include "base/observer_list_threadsafe.h"
15 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h" 15 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h"
16 #include "chrome/browser/sync_file_system/sync_status_code.h" 16 #include "chrome/browser/sync_file_system/sync_status_code.h"
17 #include "storage/browser/blob/blob_data_handle.h"
18 #include "storage/browser/fileapi/file_system_operation.h"
19 #include "storage/browser/fileapi/file_system_url.h"
20 #include "storage/browser/quota/quota_callbacks.h"
17 #include "storage/common/fileapi/file_system_types.h" 21 #include "storage/common/fileapi/file_system_types.h"
18 #include "storage/common/fileapi/file_system_util.h" 22 #include "storage/common/fileapi/file_system_util.h"
19 #include "storage/common/quota/quota_types.h" 23 #include "storage/common/quota/quota_types.h"
20 #include "webkit/browser/blob/blob_data_handle.h"
21 #include "webkit/browser/fileapi/file_system_operation.h"
22 #include "webkit/browser/fileapi/file_system_url.h"
23 #include "webkit/browser/quota/quota_callbacks.h"
24 24
25 namespace base { 25 namespace base {
26 class SingleThreadTaskRunner; 26 class SingleThreadTaskRunner;
27 class Thread; 27 class Thread;
28 } 28 }
29 29
30 namespace storage { 30 namespace storage {
31 class FileSystemContext; 31 class FileSystemContext;
32 class FileSystemOperationRunner; 32 class FileSystemOperationRunner;
33 class FileSystemURL; 33 class FileSystemURL;
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 bool is_filesystem_opened_; // Should be accessed only on the IO thread. 244 bool is_filesystem_opened_; // Should be accessed only on the IO thread.
245 245
246 scoped_refptr<ObserverList> sync_status_observers_; 246 scoped_refptr<ObserverList> sync_status_observers_;
247 247
248 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); 248 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem);
249 }; 249 };
250 250
251 } // namespace sync_file_system 251 } // namespace sync_file_system
252 252
253 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 253 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync_file_system/file_change.h ('k') | chrome/browser/sync_file_system/local/canned_syncable_file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698