| 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 <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/files/file_path_watcher.h" | 11 #include "base/files/file_path_watcher.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 13 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
| 14 #include "chrome/browser/chromeos/drive/file_system_observer.h" | 14 #include "chrome/browser/chromeos/drive/file_system_observer.h" |
| 15 #include "chrome/browser/chromeos/drive/job_list.h" | 15 #include "chrome/browser/chromeos/drive/job_list.h" |
| 16 #include "chrome/browser/chromeos/extensions/file_manager/file_watcher.h" | 16 #include "chrome/browser/chromeos/extensions/file_manager/file_watcher.h" |
| 17 #include "chrome/browser/chromeos/net/connectivity_state_helper_observer.h" | |
| 18 #include "chrome/browser/drive/drive_service_interface.h" | 17 #include "chrome/browser/drive/drive_service_interface.h" |
| 19 #include "chromeos/disks/disk_mount_manager.h" | 18 #include "chromeos/disks/disk_mount_manager.h" |
| 19 #include "chromeos/network/network_state_handler_observer.h" |
| 20 | 20 |
| 21 class PrefChangeRegistrar; | 21 class PrefChangeRegistrar; |
| 22 class Profile; | 22 class Profile; |
| 23 | 23 |
| 24 namespace file_manager { | 24 namespace file_manager { |
| 25 | 25 |
| 26 class DesktopNotifications; | 26 class DesktopNotifications; |
| 27 class MountedDiskMonitor; | 27 class MountedDiskMonitor; |
| 28 | 28 |
| 29 // Monitors changes in disk mounts, network connection state and preferences | 29 // Monitors changes in disk mounts, network connection state and preferences |
| 30 // affecting File Manager. Dispatches appropriate File Browser events. | 30 // affecting File Manager. Dispatches appropriate File Browser events. |
| 31 class EventRouter | 31 class EventRouter |
| 32 : public chromeos::disks::DiskMountManager::Observer, | 32 : public chromeos::disks::DiskMountManager::Observer, |
| 33 public chromeos::ConnectivityStateHelperObserver, | 33 public chromeos::NetworkStateHandlerObserver, |
| 34 public drive::DriveIntegrationServiceObserver, | 34 public drive::DriveIntegrationServiceObserver, |
| 35 public drive::FileSystemObserver, | 35 public drive::FileSystemObserver, |
| 36 public drive::JobListObserver, | 36 public drive::JobListObserver, |
| 37 public drive::DriveServiceObserver { | 37 public drive::DriveServiceObserver { |
| 38 public: | 38 public: |
| 39 explicit EventRouter(Profile* profile); | 39 explicit EventRouter(Profile* profile); |
| 40 virtual ~EventRouter(); | 40 virtual ~EventRouter(); |
| 41 | 41 |
| 42 void Shutdown(); | 42 void Shutdown(); |
| 43 | 43 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 70 virtual void OnMountEvent( | 70 virtual void OnMountEvent( |
| 71 chromeos::disks::DiskMountManager::MountEvent event, | 71 chromeos::disks::DiskMountManager::MountEvent event, |
| 72 chromeos::MountError error_code, | 72 chromeos::MountError error_code, |
| 73 const chromeos::disks::DiskMountManager::MountPointInfo& mount_info) | 73 const chromeos::disks::DiskMountManager::MountPointInfo& mount_info) |
| 74 OVERRIDE; | 74 OVERRIDE; |
| 75 virtual void OnFormatEvent( | 75 virtual void OnFormatEvent( |
| 76 chromeos::disks::DiskMountManager::FormatEvent event, | 76 chromeos::disks::DiskMountManager::FormatEvent event, |
| 77 chromeos::FormatError error_code, | 77 chromeos::FormatError error_code, |
| 78 const std::string& device_path) OVERRIDE; | 78 const std::string& device_path) OVERRIDE; |
| 79 | 79 |
| 80 // chromeos::ConnectivityStateHelperObserver override. | 80 // chromeos::NetworkStateHandlerObserver overrides. |
| 81 virtual void NetworkManagerChanged() OVERRIDE; | 81 virtual void NetworkManagerChanged() OVERRIDE; |
| 82 virtual void DefaultNetworkChanged() OVERRIDE; | 82 virtual void DefaultNetworkChanged() OVERRIDE; |
| 83 | 83 |
| 84 // drive::JobListObserver overrides. | 84 // drive::JobListObserver overrides. |
| 85 virtual void OnJobAdded(const drive::JobInfo& job_info) OVERRIDE; | 85 virtual void OnJobAdded(const drive::JobInfo& job_info) OVERRIDE; |
| 86 virtual void OnJobUpdated(const drive::JobInfo& job_info) OVERRIDE; | 86 virtual void OnJobUpdated(const drive::JobInfo& job_info) OVERRIDE; |
| 87 virtual void OnJobDone(const drive::JobInfo& job_info, | 87 virtual void OnJobDone(const drive::JobInfo& job_info, |
| 88 drive::FileError error) OVERRIDE; | 88 drive::FileError error) OVERRIDE; |
| 89 | 89 |
| 90 // drive::DriveServiceObserver overrides. | 90 // drive::DriveServiceObserver overrides. |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 // Note: This should remain the last member so it'll be destroyed and | 166 // Note: This should remain the last member so it'll be destroyed and |
| 167 // invalidate the weak pointers before any other members are destroyed. | 167 // invalidate the weak pointers before any other members are destroyed. |
| 168 base::WeakPtrFactory<EventRouter> weak_factory_; | 168 base::WeakPtrFactory<EventRouter> weak_factory_; |
| 169 DISALLOW_COPY_AND_ASSIGN(EventRouter); | 169 DISALLOW_COPY_AND_ASSIGN(EventRouter); |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 } // namespace file_manager | 172 } // namespace file_manager |
| 173 | 173 |
| 174 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ | 174 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_EVENT_ROUTER_H_ |
| OLD | NEW |