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

Unified Diff: chrome/browser/chromeos/policy/policy_cert_verifier.cc

Issue 24153012: Fix cyclic dependency between ProfilePolicyConnector and PrefService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 7 years, 1 month 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/policy_cert_verifier.cc
diff --git a/chrome/browser/chromeos/policy/policy_cert_verifier.cc b/chrome/browser/chromeos/policy/policy_cert_verifier.cc
index 307cdd01bad7994d548531f6a850171a8bd808d1..947f4dcca5bd22a740986eaeaa474097ed1c05bf 100644
--- a/chrome/browser/chromeos/policy/policy_cert_verifier.cc
+++ b/chrome/browser/chromeos/policy/policy_cert_verifier.cc
@@ -5,7 +5,6 @@
#include "chrome/browser/chromeos/policy/policy_cert_verifier.h"
#include "base/logging.h"
-#include "base/memory/ref_counted.h"
#include "chrome/browser/browser_process.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/net_errors.h"
@@ -56,7 +55,7 @@ void PolicyCertVerifier::InitializeOnIOThread() {
net::CertVerifyProc::CreateDefault();
if (!verify_proc->SupportsAdditionalTrustAnchors()) {
LOG(WARNING)
- << "Additional trust anchors not supported in the current platform!";
+ << "Additional trust anchors not supported on the current platform!";
}
net::MultiThreadedCertVerifier* verifier =
new net::MultiThreadedCertVerifier(verify_proc.get());

Powered by Google App Engine
This is Rietveld 408576698