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

Unified Diff: components/content_settings/core/browser/website_settings_info.cc

Issue 1290923003: Remove return value statement from the function that have void return type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « components/content_settings/core/browser/cookie_settings.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/content_settings/core/browser/website_settings_info.cc
diff --git a/components/content_settings/core/browser/website_settings_info.cc b/components/content_settings/core/browser/website_settings_info.cc
index 0a9cfce981d45f9e851a28f2f92851d47f3dfd98..7dd2f2dec6dd99f06d53c7f03324eae2cb6dedd3 100644
--- a/components/content_settings/core/browser/website_settings_info.cc
+++ b/components/content_settings/core/browser/website_settings_info.cc
@@ -10,8 +10,8 @@
namespace {
-const char* kPrefPrefix = "profile.content_settings.exceptions.";
-const char* kDefaultPrefPrefix = "profile.default_content_setting_values.";
+const char kPrefPrefix[] = "profile.content_settings.exceptions.";
+const char kDefaultPrefPrefix[] = "profile.default_content_setting_values.";
std::string GetPrefName(const std::string& name, const char* prefix) {
std::string pref_name = name;
« no previous file with comments | « components/content_settings/core/browser/cookie_settings.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698