| 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_CERT_MIGRATOR_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_ |
| 6 #define CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "chromeos/cert_loader.h" | 10 #include "chromeos/cert_loader.h" |
| 11 #include "chromeos/chromeos_export.h" | 11 #include "chromeos/chromeos_export.h" |
| 12 #include "chromeos/network/network_state_handler_observer.h" | 12 #include "chromeos/network/network_state_handler_observer.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 class NetworkStateHandler; | 16 class NetworkStateHandler; |
| 17 | 17 |
| 18 // Migrates network configurations with incorrect or missing slot IDs of client | 18 // Migrates network configurations with incorrect or missing slot IDs of client |
| (...skipping 22 matching lines...) Expand all Loading... |
| 41 NetworkStateHandler* network_state_handler_; | 41 NetworkStateHandler* network_state_handler_; |
| 42 | 42 |
| 43 base::WeakPtrFactory<NetworkCertMigrator> weak_ptr_factory_; | 43 base::WeakPtrFactory<NetworkCertMigrator> weak_ptr_factory_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(NetworkCertMigrator); | 45 DISALLOW_COPY_AND_ASSIGN(NetworkCertMigrator); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace chromeos | 48 } // namespace chromeos |
| 49 | 49 |
| 50 #endif // CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_ | 50 #endif // CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_ |
| OLD | NEW |