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_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/scoped_observer.h" | 14 #include "base/scoped_observer.h" |
15 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 15 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
16 #include "components/keyed_service/core/keyed_service.h" | 16 #include "components/keyed_service/core/keyed_service.h" |
17 #include "webkit/browser/fileapi/file_system_url.h" | 17 #include "storage/browser/fileapi/file_system_url.h" |
18 #include "webkit/browser/fileapi/watcher_manager.h" | 18 #include "storage/browser/fileapi/watcher_manager.h" |
19 | 19 |
20 namespace content { | 20 namespace content { |
21 class BrowserContext; | 21 class BrowserContext; |
22 } // namespace content | 22 } // namespace content |
23 | 23 |
24 namespace storage { | 24 namespace storage { |
25 class FileSystemContext; | 25 class FileSystemContext; |
26 } // namespace storage | 26 } // namespace storage |
27 | 27 |
28 namespace extensions { | 28 namespace extensions { |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 ScopedObserver<storage::WatcherManager, storage::WatcherManager::Observer> | 119 ScopedObserver<storage::WatcherManager, storage::WatcherManager::Observer> |
120 observing_; | 120 observing_; |
121 base::WeakPtrFactory<EntryWatcherService> weak_ptr_factory_; | 121 base::WeakPtrFactory<EntryWatcherService> weak_ptr_factory_; |
122 | 122 |
123 DISALLOW_COPY_AND_ASSIGN(EntryWatcherService); | 123 DISALLOW_COPY_AND_ASSIGN(EntryWatcherService); |
124 }; | 124 }; |
125 | 125 |
126 } // namespace extensions | 126 } // namespace extensions |
127 | 127 |
128 #endif // CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ | 128 #endif // CHROME_BROWSER_EXTENSIONS_API_FILE_SYSTEM_ENTRY_WATCHER_SERVICE_H_ |
OLD | NEW |