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

Unified Diff: components/prefs/pref_service.cc

Issue 2364703002: Add network throttling as an enterprise policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add network bandwidth throttling as an enterprise policy Created 4 years, 2 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: components/prefs/pref_service.cc
diff --git a/components/prefs/pref_service.cc b/components/prefs/pref_service.cc
index e909d58be7ece21396f3af7c518eb7ddcb35456c..d237feb410c5f99ccae8e650e8896f4aa1231192 100644
--- a/components/prefs/pref_service.cc
+++ b/components/prefs/pref_service.cc
@@ -535,7 +535,7 @@ base::Value::Type PrefService::Preference::GetType() const {
}
const base::Value* PrefService::Preference::GetValue() const {
- const base::Value* result= pref_service_->GetPreferenceValue(name_);
+ const base::Value* result = pref_service_->GetPreferenceValue(name_);
Andrew T Wilson (Slow) 2016/10/21 13:27:31 Please don't bring files into your CL just to fix
stevenjb 2016/10/21 19:41:21 +1. And in general, trivial changes like this shou
kirtika1 2016/10/23 00:04:50 Done.
DCHECK(result) << "Must register pref before getting its value";
return result;
}

Powered by Google App Engine
This is Rietveld 408576698