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

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

Issue 1853033003: Fix IWYU violators that don't include scoped_ptr.h in Windows build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback_forward.h" 13 #include "base/callback_forward.h"
14 #include "base/files/file.h" 14 #include "base/files/file.h"
15 #include "base/files/scoped_temp_dir.h" 15 #include "base/files/scoped_temp_dir.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/scoped_ptr.h"
17 #include "base/observer_list_threadsafe.h" 18 #include "base/observer_list_threadsafe.h"
18 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h" 19 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h"
19 #include "chrome/browser/sync_file_system/sync_status_code.h" 20 #include "chrome/browser/sync_file_system/sync_status_code.h"
20 #include "storage/browser/blob/blob_data_handle.h" 21 #include "storage/browser/blob/blob_data_handle.h"
21 #include "storage/browser/fileapi/file_system_operation.h" 22 #include "storage/browser/fileapi/file_system_operation.h"
22 #include "storage/browser/fileapi/file_system_url.h" 23 #include "storage/browser/fileapi/file_system_url.h"
23 #include "storage/browser/quota/quota_callbacks.h" 24 #include "storage/browser/quota/quota_callbacks.h"
24 #include "storage/common/fileapi/file_system_types.h" 25 #include "storage/common/fileapi/file_system_types.h"
25 #include "storage/common/fileapi/file_system_util.h" 26 #include "storage/common/fileapi/file_system_util.h"
26 #include "storage/common/quota/quota_types.h" 27 #include "storage/common/quota/quota_types.h"
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 bool is_filesystem_opened_; // Should be accessed only on the IO thread. 251 bool is_filesystem_opened_; // Should be accessed only on the IO thread.
251 252
252 scoped_refptr<ObserverList> sync_status_observers_; 253 scoped_refptr<ObserverList> sync_status_observers_;
253 254
254 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); 255 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem);
255 }; 256 };
256 257
257 } // namespace sync_file_system 258 } // namespace sync_file_system
258 259
259 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 260 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698