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 <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/gtest_prod_util.h" |
15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
17 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
18 #include "base/threading/thread_checker.h" | 19 #include "base/threading/thread_checker.h" |
19 #include "base/values.h" | 20 #include "base/values.h" |
20 #include "chrome/browser/chromeos/file_system_provider/observer.h" | 21 #include "chrome/browser/chromeos/file_system_provider/observer.h" |
21 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte
rface.h" | 22 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte
rface.h" |
22 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_obse
rver.h" | 23 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_obse
rver.h" |
23 #include "chrome/browser/chromeos/file_system_provider/watcher.h" | 24 #include "chrome/browser/chromeos/file_system_provider/watcher.h" |
24 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 base::ThreadChecker thread_checker_; | 212 base::ThreadChecker thread_checker_; |
212 | 213 |
213 base::WeakPtrFactory<Service> weak_ptr_factory_; | 214 base::WeakPtrFactory<Service> weak_ptr_factory_; |
214 DISALLOW_COPY_AND_ASSIGN(Service); | 215 DISALLOW_COPY_AND_ASSIGN(Service); |
215 }; | 216 }; |
216 | 217 |
217 } // namespace file_system_provider | 218 } // namespace file_system_provider |
218 } // namespace chromeos | 219 } // namespace chromeos |
219 | 220 |
220 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ | 221 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_SERVICE_H_ |
OLD | NEW |