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

Unified Diff: chrome/browser/chromeos/policy/network_configuration_updater_impl.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.h
diff --git a/chrome/browser/chromeos/policy/network_configuration_updater_impl.h b/chrome/browser/chromeos/policy/network_configuration_updater_impl.h
index f9d7f103f34c7a321538942c5d7235edc3328807..ad54c634f65f5841cbd27eb694b3e8820c8370dd 100644
--- a/chrome/browser/chromeos/policy/network_configuration_updater_impl.h
+++ b/chrome/browser/chromeos/policy/network_configuration_updater_impl.h
@@ -14,7 +14,9 @@ class Value;
}
namespace chromeos {
-class CertificateHandler;
+namespace onc {
+class CertificateImporter;
+}
}
namespace policy {
@@ -29,7 +31,7 @@ class NetworkConfigurationUpdaterImpl : public NetworkConfigurationUpdater,
public:
NetworkConfigurationUpdaterImpl(
PolicyService* device_policy_service,
- scoped_ptr<chromeos::CertificateHandler> certificate_handler);
+ scoped_ptr<chromeos::onc::CertificateImporter> certificate_importer);
virtual ~NetworkConfigurationUpdaterImpl();
// NetworkConfigurationUpdater overrides.
@@ -69,7 +71,7 @@ class NetworkConfigurationUpdaterImpl : public NetworkConfigurationUpdater,
// User hash of the user that the user policy applies to.
std::string hashed_username_;
- scoped_ptr<chromeos::CertificateHandler> certificate_handler_;
+ scoped_ptr<chromeos::onc::CertificateImporter> certificate_importer_;
DISALLOW_COPY_AND_ASSIGN(NetworkConfigurationUpdaterImpl);
};

Powered by Google App Engine
This is Rietveld 408576698