Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2263)

Unified Diff: chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h

Issue 20041002: Make CertificateHandler a proper interface of CertificateImporter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h
diff --git a/chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h b/chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h
index 049cabe71b868f6ee407457292437d4cad499ab5..142e61d3470df07ebd15eafc02f7334946237f2c 100644
--- a/chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h
+++ b/chrome/browser/chromeos/policy/network_configuration_updater_impl_cros.h
@@ -19,7 +19,9 @@ class Value;
}
namespace chromeos {
-class CertificateHandler;
+namespace onc {
+class CertificateImporter;
+}
}
namespace policy {
@@ -42,7 +44,7 @@ class NetworkConfigurationUpdaterImplCros
NetworkConfigurationUpdaterImplCros(
PolicyService* device_policy_service,
chromeos::NetworkLibrary* network_library,
- scoped_ptr<chromeos::CertificateHandler> certificate_handler);
+ scoped_ptr<chromeos::onc::CertificateImporter> certificate_importer);
virtual ~NetworkConfigurationUpdaterImplCros();
// NetworkProfileObserver overrides.
@@ -88,7 +90,7 @@ class NetworkConfigurationUpdaterImplCros
// Network library to write network configuration to.
chromeos::NetworkLibrary* network_library_;
- scoped_ptr<chromeos::CertificateHandler> certificate_handler_;
+ scoped_ptr<chromeos::onc::CertificateImporter> certificate_importer_;
// Needed to check whether user policies are ready.
// Unowned.

Powered by Google App Engine
This is Rietveld 408576698