| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "chrome/browser/chromeos/net/managed_network_configuration_handler.h" | 5 #include "chromeos/network/managed_network_configuration_handler.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/guid.h" | 11 #include "base/guid.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 error_callback); | 197 error_callback); |
| 198 } | 198 } |
| 199 | 199 |
| 200 ManagedNetworkConfigurationHandler::ManagedNetworkConfigurationHandler() { | 200 ManagedNetworkConfigurationHandler::ManagedNetworkConfigurationHandler() { |
| 201 } | 201 } |
| 202 | 202 |
| 203 ManagedNetworkConfigurationHandler::~ManagedNetworkConfigurationHandler() { | 203 ManagedNetworkConfigurationHandler::~ManagedNetworkConfigurationHandler() { |
| 204 } | 204 } |
| 205 | 205 |
| 206 } // namespace chromeos | 206 } // namespace chromeos |
| OLD | NEW |