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

Unified Diff: chrome/browser/ui/app_list/test/fake_profile.cc

Issue 898003002: [Cleanup] Const-correct the profile() method for the EasyUnlockService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/ui/app_list/test/fake_profile.cc
diff --git a/chrome/browser/ui/app_list/test/fake_profile.cc b/chrome/browser/ui/app_list/test/fake_profile.cc
index f51f17eefb485b4f815dd6e150914874f4d00729..ca88eb35b0073cd7ef050b008e80a4f7f879ed32 100644
--- a/chrome/browser/ui/app_list/test/fake_profile.cc
+++ b/chrome/browser/ui/app_list/test/fake_profile.cc
@@ -120,6 +120,10 @@ PrefService* FakeProfile::GetPrefs() {
return NULL;
}
+const PrefService* FakeProfile::GetPrefs() const {
+ return NULL;
sky 2015/02/05 17:00:58 nullptr?
Ilya Sherman 2015/02/05 21:24:58 Done. Also replaced a bunch of other NULLs with n
+}
+
PrefService* FakeProfile::GetOffTheRecordPrefs() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698