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_FILE_SYSTEM_PROVIDER_SERVIC
E_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_SERVIC
E_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/files/file.h" | 13 #include "base/files/file.h" |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 scoped_ptr<RegistryInterface> registry_; | 210 scoped_ptr<RegistryInterface> registry_; |
211 base::ThreadChecker thread_checker_; | 211 base::ThreadChecker thread_checker_; |
212 | 212 |
213 base::WeakPtrFactory<Service> weak_ptr_factory_; | 213 base::WeakPtrFactory<Service> weak_ptr_factory_; |
214 DISALLOW_COPY_AND_ASSIGN(Service); | 214 DISALLOW_COPY_AND_ASSIGN(Service); |
215 }; | 215 }; |
216 | 216 |
217 } // namespace file_system_provider | 217 } // namespace file_system_provider |
218 } // namespace chromeos | 218 } // namespace chromeos |
219 | 219 |
220 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 220 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_SER
VICE_H_ |
OLD | NEW |