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

Side by Side Diff: chrome/common/pref_names.h

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/pref_names.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 extern const char kWebKitFantasyFontFamily[]; 49 extern const char kWebKitFantasyFontFamily[];
50 extern const char kWebKitStandardFontFamilyMap[]; 50 extern const char kWebKitStandardFontFamilyMap[];
51 extern const char kWebKitFixedFontFamilyMap[]; 51 extern const char kWebKitFixedFontFamilyMap[];
52 extern const char kWebKitSerifFontFamilyMap[]; 52 extern const char kWebKitSerifFontFamilyMap[];
53 extern const char kWebKitSansSerifFontFamilyMap[]; 53 extern const char kWebKitSansSerifFontFamilyMap[];
54 extern const char kWebKitCursiveFontFamilyMap[]; 54 extern const char kWebKitCursiveFontFamilyMap[];
55 extern const char kWebKitFantasyFontFamilyMap[]; 55 extern const char kWebKitFantasyFontFamilyMap[];
56 56
57 // ISO 15924 four-letter script codes that per-script font prefs are supported 57 // ISO 15924 four-letter script codes that per-script font prefs are supported
58 // for. 58 // for.
59 extern const char* kWebKitScriptsForFontFamilyMaps[]; 59 extern const char* const kWebKitScriptsForFontFamilyMaps[];
60 extern const size_t kWebKitScriptsForFontFamilyMapsLength; 60 extern const size_t kWebKitScriptsForFontFamilyMapsLength;
61 61
62 // Per-script font prefs that have defaults, for easy reference when registering 62 // Per-script font prefs that have defaults, for easy reference when registering
63 // the defaults. 63 // the defaults.
64 extern const char kWebKitStandardFontFamilyArabic[]; 64 extern const char kWebKitStandardFontFamilyArabic[];
65 extern const char kWebKitFixedFontFamilyArabic[]; 65 extern const char kWebKitFixedFontFamilyArabic[];
66 extern const char kWebKitSerifFontFamilyArabic[]; 66 extern const char kWebKitSerifFontFamilyArabic[];
67 extern const char kWebKitSansSerifFontFamilyArabic[]; 67 extern const char kWebKitSansSerifFontFamilyArabic[];
68 extern const char kWebKitStandardFontFamilyJapanese[]; 68 extern const char kWebKitStandardFontFamilyJapanese[];
69 extern const char kWebKitFixedFontFamilyJapanese[]; 69 extern const char kWebKitFixedFontFamilyJapanese[];
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 623
624 extern const char kDevicePolicyRefreshRate[]; 624 extern const char kDevicePolicyRefreshRate[];
625 extern const char kUserPolicyRefreshRate[]; 625 extern const char kUserPolicyRefreshRate[];
626 626
627 extern const char kRecoveryComponentVersion[]; 627 extern const char kRecoveryComponentVersion[];
628 extern const char kComponentUpdaterState[]; 628 extern const char kComponentUpdaterState[];
629 629
630 } // namespace prefs 630 } // namespace prefs
631 631
632 #endif // CHROME_COMMON_PREF_NAMES_H_ 632 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/common/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698