| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_MANAGER_EVENT_ROUTER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "components/drive/chromeos/sync_client.h" | 30 #include "components/drive/chromeos/sync_client.h" |
| 31 #include "components/drive/service/drive_service_interface.h" | 31 #include "components/drive/service/drive_service_interface.h" |
| 32 #include "components/keyed_service/core/keyed_service.h" | 32 #include "components/keyed_service/core/keyed_service.h" |
| 33 #include "storage/browser/fileapi/file_system_operation.h" | 33 #include "storage/browser/fileapi/file_system_operation.h" |
| 34 | 34 |
| 35 class PrefChangeRegistrar; | 35 class PrefChangeRegistrar; |
| 36 class Profile; | 36 class Profile; |
| 37 | 37 |
| 38 using file_manager::util::EntryDefinition; | 38 using file_manager::util::EntryDefinition; |
| 39 | 39 |
| 40 namespace base { | |
| 41 class ListValue; | |
| 42 } | |
| 43 | |
| 44 namespace chromeos { | 40 namespace chromeos { |
| 45 class NetworkState; | 41 class NetworkState; |
| 46 } | 42 } |
| 47 | 43 |
| 48 namespace drive { | 44 namespace drive { |
| 49 class FileChange; | 45 class FileChange; |
| 50 } | 46 } |
| 51 | 47 |
| 52 namespace file_manager { | 48 namespace file_manager { |
| 53 | 49 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 // Note: This should remain the last member so it'll be destroyed and | 221 // Note: This should remain the last member so it'll be destroyed and |
| 226 // invalidate the weak pointers before any other members are destroyed. | 222 // invalidate the weak pointers before any other members are destroyed. |
| 227 base::WeakPtrFactory<EventRouter> weak_factory_; | 223 base::WeakPtrFactory<EventRouter> weak_factory_; |
| 228 | 224 |
| 229 DISALLOW_COPY_AND_ASSIGN(EventRouter); | 225 DISALLOW_COPY_AND_ASSIGN(EventRouter); |
| 230 }; | 226 }; |
| 231 | 227 |
| 232 } // namespace file_manager | 228 } // namespace file_manager |
| 233 | 229 |
| 234 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ | 230 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ |
| OLD | NEW |