| 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_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 class ExtensionRegistry; | 36 class ExtensionRegistry; |
| 37 } // namespace extensions | 37 } // namespace extensions |
| 38 | 38 |
| 39 namespace user_prefs { | 39 namespace user_prefs { |
| 40 class PrefRegistrySyncable; | 40 class PrefRegistrySyncable; |
| 41 } // namespace user_prefs | 41 } // namespace user_prefs |
| 42 | 42 |
| 43 namespace chromeos { | 43 namespace chromeos { |
| 44 namespace file_system_provider { | 44 namespace file_system_provider { |
| 45 | 45 |
| 46 class ProvidedFileSystemFactoryInterface; | |
| 47 class ProvidedFileSystemInfo; | 46 class ProvidedFileSystemInfo; |
| 48 class ProvidedFileSystemInterface; | 47 class ProvidedFileSystemInterface; |
| 49 class RegistryInterface; | 48 class RegistryInterface; |
| 50 class ServiceFactory; | |
| 51 struct MountOptions; | 49 struct MountOptions; |
| 52 | 50 |
| 53 // Registers preferences to remember registered file systems between reboots. | 51 // Registers preferences to remember registered file systems between reboots. |
| 54 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | 52 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 55 | 53 |
| 56 // Holds information for a providing extension. | 54 // Holds information for a providing extension. |
| 57 struct ProvidingExtensionInfo { | 55 struct ProvidingExtensionInfo { |
| 58 ProvidingExtensionInfo(); | 56 ProvidingExtensionInfo(); |
| 59 ~ProvidingExtensionInfo(); | 57 ~ProvidingExtensionInfo(); |
| 60 | 58 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 base::ThreadChecker thread_checker_; | 208 base::ThreadChecker thread_checker_; |
| 211 | 209 |
| 212 base::WeakPtrFactory<Service> weak_ptr_factory_; | 210 base::WeakPtrFactory<Service> weak_ptr_factory_; |
| 213 DISALLOW_COPY_AND_ASSIGN(Service); | 211 DISALLOW_COPY_AND_ASSIGN(Service); |
| 214 }; | 212 }; |
| 215 | 213 |
| 216 } // namespace file_system_provider | 214 } // namespace file_system_provider |
| 217 } // namespace chromeos | 215 } // namespace chromeos |
| 218 | 216 |
| 219 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 217 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ |
| OLD | NEW |