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; |
} |