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

Side by Side Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h

Issue 273153003: Remove stray platform_file.h from chrome and components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove "using" Created 6 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/platform_file.h"
11 #include "chrome/browser/extensions/chrome_extension_function.h" 10 #include "chrome/browser/extensions/chrome_extension_function.h"
12 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h" 11 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h"
13 #include "chrome/browser/sync_file_system/sync_file_status.h" 12 #include "chrome/browser/sync_file_system/sync_file_status.h"
14 #include "chrome/browser/sync_file_system/sync_status_code.h" 13 #include "chrome/browser/sync_file_system/sync_status_code.h"
15 #include "chrome/common/extensions/api/sync_file_system.h" 14 #include "chrome/common/extensions/api/sync_file_system.h"
16 #include "webkit/browser/fileapi/file_system_url.h" 15 #include "webkit/browser/fileapi/file_system_url.h"
17 #include "webkit/common/quota/quota_types.h" 16 #include "webkit/common/quota/quota_types.h"
18 17
19 namespace fileapi { 18 namespace fileapi {
20 class FileSystemContext; 19 class FileSystemContext;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 SYNCFILESYSTEM_GETSERVICESTATUS) 146 SYNCFILESYSTEM_GETSERVICESTATUS)
148 147
149 protected: 148 protected:
150 virtual ~SyncFileSystemGetServiceStatusFunction() {} 149 virtual ~SyncFileSystemGetServiceStatusFunction() {}
151 virtual bool RunSync() OVERRIDE; 150 virtual bool RunSync() OVERRIDE;
152 }; 151 };
153 152
154 } // namespace extensions 153 } // namespace extensions
155 154
156 #endif // CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H _ 155 #endif // CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_API_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698