| OLD | NEW |
| 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 // This file provides file system related API functions. | 5 // This file provides file system related API functions. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_
H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_
H_ |
| 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_
H_ | 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_
H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| 11 #include <stdint.h> | 11 #include <stdint.h> |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "chrome/browser/chromeos/extensions/file_manager/private_api_base.h" | 16 #include "chrome/browser/chromeos/extensions/file_manager/private_api_base.h" |
| 17 #include "chrome/browser/extensions/chrome_extension_function.h" | 17 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 18 #include "chrome/browser/extensions/chrome_extension_function_details.h" | 18 #include "chrome/browser/extensions/chrome_extension_function_details.h" |
| 19 #include "components/drive/file_errors.h" | 19 #include "components/drive/file_errors.h" |
| 20 #include "device/media_transfer_protocol/mtp_storage_info.pb.h" | 20 #include "device/media_transfer_protocol/mtp_storage_info.pb.h" |
| 21 #include "extensions/browser/extension_function.h" | 21 #include "extensions/browser/extension_function.h" |
| 22 #include "storage/browser/fileapi/file_system_url.h" | 22 #include "storage/browser/fileapi/file_system_url.h" |
| 23 | 23 |
| 24 class GURL; | |
| 25 | |
| 26 namespace base { | |
| 27 class FilePath; | |
| 28 } // namespace base | |
| 29 | |
| 30 namespace storage { | 24 namespace storage { |
| 31 class FileSystemContext; | 25 class FileSystemContext; |
| 32 class FileSystemURL; | 26 class FileSystemURL; |
| 33 } // namespace storage | 27 } // namespace storage |
| 34 | 28 |
| 35 namespace file_manager { | 29 namespace file_manager { |
| 36 namespace util { | 30 namespace util { |
| 37 struct EntryDefinition; | 31 struct EntryDefinition; |
| 38 typedef std::vector<EntryDefinition> EntryDefinitionList; | 32 typedef std::vector<EntryDefinition> EntryDefinitionList; |
| 39 } // namespace util | 33 } // namespace util |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 | 342 |
| 349 void OnDirectorySizeRetrieved(int64_t size); | 343 void OnDirectorySizeRetrieved(int64_t size); |
| 350 | 344 |
| 351 // AsyncExtensionFunction overrides | 345 // AsyncExtensionFunction overrides |
| 352 bool RunAsync() override; | 346 bool RunAsync() override; |
| 353 }; | 347 }; |
| 354 | 348 |
| 355 } // namespace extensions | 349 } // namespace extensions |
| 356 | 350 |
| 357 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYST
EM_H_ | 351 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYST
EM_H_ |
| OLD | NEW |