| OLD | NEW |
| 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_FILE_SYSTEM_FILE_SYSTEM_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_FILE_SYSTEM_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_FILE_SYSTEM_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_FILE_SYSTEM_API_H_ |
| 7 | 7 |
| 8 #include <string> |
| 8 #include <vector> | 9 #include <vector> |
| 9 | 10 |
| 10 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 11 #include "chrome/browser/extensions/chrome_extension_function.h" | 12 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 12 #include "chrome/common/extensions/api/file_system.h" | 13 #include "chrome/common/extensions/api/file_system.h" |
| 13 #include "ui/shell_dialogs/select_file_dialog.h" | 14 #include "ui/shell_dialogs/select_file_dialog.h" |
| 14 | 15 |
| 15 namespace extensions { | 16 namespace extensions { |
| 16 class ExtensionPrefs; | 17 class ExtensionPrefs; |
| 17 | 18 |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 FILESYSTEM_GETOBSERVEDENTRIES); | 239 FILESYSTEM_GETOBSERVEDENTRIES); |
| 239 | 240 |
| 240 protected: | 241 protected: |
| 241 virtual ~FileSystemGetObservedEntriesFunction() {} | 242 virtual ~FileSystemGetObservedEntriesFunction() {} |
| 242 virtual bool RunSync() OVERRIDE; | 243 virtual bool RunSync() OVERRIDE; |
| 243 }; | 244 }; |
| 244 | 245 |
| 245 } // namespace extensions | 246 } // namespace extensions |
| 246 | 247 |
| 247 #endif // CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_FILE_SYSTEM_API_H_ | 248 #endif // CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_FILE_SYSTEM_API_H_ |
| OLD | NEW |