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

Unified Diff: chrome/common/pref_names.cc

Issue 8958001: Fix mistakenly non-const variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index 56cc885a45882e126b3c29c9e34770326f1ad184..303d442b7c3468394f44023ed264b6d3e7fee832 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -132,7 +132,7 @@ const char kWebKitFantasyFontFamilyMap[] =
"webkit.webprefs.fonts.fantasy";
// TODO(falken): Add all the scripts we should support.
-const char* kWebKitScriptsForFontFamilyMaps[] =
+const char* const kWebKitScriptsForFontFamilyMaps[] =
{ "Arab", "Hang", "Hans", "Hant", "Hrkt" };
const size_t kWebKitScriptsForFontFamilyMapsLength =
arraysize(kWebKitScriptsForFontFamilyMaps);
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698