| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROMEOS_NETWORK_NETWORK_HANDLER_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_HANDLER_H_ |
| 6 #define CHROMEOS_NETWORK_NETWORK_HANDLER_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 | 13 |
| 14 class ClientCertResolver; |
| 14 class GeolocationHandler; | 15 class GeolocationHandler; |
| 15 class ManagedNetworkConfigurationHandler; | 16 class ManagedNetworkConfigurationHandler; |
| 16 class NetworkCertMigrator; | 17 class NetworkCertMigrator; |
| 17 class NetworkConfigurationHandler; | 18 class NetworkConfigurationHandler; |
| 18 class NetworkConnectionHandler; | 19 class NetworkConnectionHandler; |
| 19 class NetworkDeviceHandler; | 20 class NetworkDeviceHandler; |
| 20 class NetworkProfileHandler; | 21 class NetworkProfileHandler; |
| 21 class NetworkStateHandler; | 22 class NetworkStateHandler; |
| 22 class NetworkSmsHandler; | 23 class NetworkSmsHandler; |
| 23 | 24 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 53 private: | 54 private: |
| 54 NetworkHandler(); | 55 NetworkHandler(); |
| 55 virtual ~NetworkHandler(); | 56 virtual ~NetworkHandler(); |
| 56 | 57 |
| 57 void Init(); | 58 void Init(); |
| 58 | 59 |
| 59 // The order of these determines the (inverse) destruction order. | 60 // The order of these determines the (inverse) destruction order. |
| 60 scoped_ptr<NetworkStateHandler> network_state_handler_; | 61 scoped_ptr<NetworkStateHandler> network_state_handler_; |
| 61 scoped_ptr<NetworkDeviceHandler> network_device_handler_; | 62 scoped_ptr<NetworkDeviceHandler> network_device_handler_; |
| 62 scoped_ptr<NetworkProfileHandler> network_profile_handler_; | 63 scoped_ptr<NetworkProfileHandler> network_profile_handler_; |
| 63 scoped_ptr<NetworkCertMigrator> network_cert_migrator_; | |
| 64 scoped_ptr<NetworkConfigurationHandler> network_configuration_handler_; | 64 scoped_ptr<NetworkConfigurationHandler> network_configuration_handler_; |
| 65 scoped_ptr<ManagedNetworkConfigurationHandler> | 65 scoped_ptr<ManagedNetworkConfigurationHandler> |
| 66 managed_network_configuration_handler_; | 66 managed_network_configuration_handler_; |
| 67 scoped_ptr<NetworkCertMigrator> network_cert_migrator_; |
| 68 scoped_ptr<ClientCertResolver> client_cert_resolver_; |
| 67 scoped_ptr<NetworkConnectionHandler> network_connection_handler_; | 69 scoped_ptr<NetworkConnectionHandler> network_connection_handler_; |
| 68 scoped_ptr<NetworkSmsHandler> network_sms_handler_; | 70 scoped_ptr<NetworkSmsHandler> network_sms_handler_; |
| 69 scoped_ptr<GeolocationHandler> geolocation_handler_; | 71 scoped_ptr<GeolocationHandler> geolocation_handler_; |
| 70 | 72 |
| 71 DISALLOW_COPY_AND_ASSIGN(NetworkHandler); | 73 DISALLOW_COPY_AND_ASSIGN(NetworkHandler); |
| 72 }; | 74 }; |
| 73 | 75 |
| 74 } // namespace chromeos | 76 } // namespace chromeos |
| 75 | 77 |
| 76 #endif // CHROMEOS_NETWORK_NETWORK_HANDLER_H_ | 78 #endif // CHROMEOS_NETWORK_NETWORK_HANDLER_H_ |
| OLD | NEW |