| 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 CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ |
| 6 #define CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/gtest_prod_util.h" | |
| 16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 18 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
| 19 #include "chromeos/chromeos_export.h" | 18 #include "chromeos/chromeos_export.h" |
| 20 #include "chromeos/dbus/dbus_method_call_status.h" | 19 #include "chromeos/dbus/dbus_method_call_status.h" |
| 21 #include "chromeos/network/network_configuration_observer.h" | 20 #include "chromeos/network/network_configuration_observer.h" |
| 22 #include "chromeos/network/network_handler.h" | 21 #include "chromeos/network/network_handler.h" |
| 23 #include "chromeos/network/network_handler_callbacks.h" | 22 #include "chromeos/network/network_handler_callbacks.h" |
| 24 | 23 |
| 25 namespace base { | 24 namespace base { |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 std::map<std::string, ProfileEntryDeleter*> profile_entry_deleters_; | 206 std::map<std::string, ProfileEntryDeleter*> profile_entry_deleters_; |
| 208 | 207 |
| 209 base::ObserverList<NetworkConfigurationObserver> observers_; | 208 base::ObserverList<NetworkConfigurationObserver> observers_; |
| 210 | 209 |
| 211 DISALLOW_COPY_AND_ASSIGN(NetworkConfigurationHandler); | 210 DISALLOW_COPY_AND_ASSIGN(NetworkConfigurationHandler); |
| 212 }; | 211 }; |
| 213 | 212 |
| 214 } // namespace chromeos | 213 } // namespace chromeos |
| 215 | 214 |
| 216 #endif // CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ | 215 #endif // CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ |
| OLD | NEW |