| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNCTIO
N_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNCTIO
N_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNCTIO
N_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNCTIO
N_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/files/file.h" | 11 #include "base/files/file.h" |
| 12 #include "chrome/browser/extensions/chrome_extension_function.h" | 12 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 13 #include "chrome/common/extensions/api/file_system_provider.h" | 13 #include "chrome/common/extensions/api/file_system_provider.h" |
| 14 | 14 |
| 15 namespace base { | |
| 16 class DictionaryValue; | |
| 17 } // namespace base | |
| 18 | |
| 19 namespace chromeos { | 15 namespace chromeos { |
| 20 namespace file_system_provider { | 16 namespace file_system_provider { |
| 21 | 17 |
| 22 class RequestManager; | 18 class RequestManager; |
| 23 class RequestValue; | 19 class RequestValue; |
| 24 | 20 |
| 25 } // namespace file_system_provider | 21 } // namespace file_system_provider |
| 26 } // namespace chromeos | 22 } // namespace chromeos |
| 27 | 23 |
| 28 namespace extensions { | 24 namespace extensions { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 // Guarantees |request_id_| and |request_manager_| are valid. | 70 // Guarantees |request_id_| and |request_manager_| are valid. |
| 75 bool PreRunValidation(std::string* error) override; | 71 bool PreRunValidation(std::string* error) override; |
| 76 | 72 |
| 77 int request_id_; | 73 int request_id_; |
| 78 chromeos::file_system_provider::RequestManager* request_manager_; | 74 chromeos::file_system_provider::RequestManager* request_manager_; |
| 79 }; | 75 }; |
| 80 | 76 |
| 81 } // namespace extensions | 77 } // namespace extensions |
| 82 | 78 |
| 83 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNC
TION_H_ | 79 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_PROVIDER_FUNC
TION_H_ |
| OLD | NEW |