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

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

Issue 541103002: Introduce ChromeZoomLevelPref, make zoom level prefs independent of profile prefs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to fix scoped_refptr conversion. Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 extern const base::FilePath::CharType kShortcutsDatabaseName[]; 82 extern const base::FilePath::CharType kShortcutsDatabaseName[];
83 extern const base::FilePath::CharType kSingletonCookieFilename[]; 83 extern const base::FilePath::CharType kSingletonCookieFilename[];
84 extern const base::FilePath::CharType kSingletonLockFilename[]; 84 extern const base::FilePath::CharType kSingletonLockFilename[];
85 extern const base::FilePath::CharType kSingletonSocketFilename[]; 85 extern const base::FilePath::CharType kSingletonSocketFilename[];
86 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; 86 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[];
87 extern const base::FilePath::CharType kSyncCredentialsFilename[]; 87 extern const base::FilePath::CharType kSyncCredentialsFilename[];
88 extern const base::FilePath::CharType kThemePackFilename[]; 88 extern const base::FilePath::CharType kThemePackFilename[];
89 extern const base::FilePath::CharType kThumbnailsFilename[]; 89 extern const base::FilePath::CharType kThumbnailsFilename[];
90 extern const base::FilePath::CharType kTopSitesFilename[]; 90 extern const base::FilePath::CharType kTopSitesFilename[];
91 extern const base::FilePath::CharType kWebAppDirname[]; 91 extern const base::FilePath::CharType kWebAppDirname[];
92 extern const base::FilePath::CharType kZoomLevelPreferencesFilename[];
92 93
93 // File name of the Pepper Flash plugin on different platforms. 94 // File name of the Pepper Flash plugin on different platforms.
94 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; 95 extern const base::FilePath::CharType kPepperFlashPluginFilename[];
95 96
96 // directory names 97 // directory names
97 extern const wchar_t kUserDataDirname[]; 98 extern const wchar_t kUserDataDirname[];
98 99
99 extern const bool kRecordModeEnabled; 100 extern const bool kRecordModeEnabled;
100 101
101 // If a WebContents is impolite and displays a second JavaScript alert within 102 // If a WebContents is impolite and displays a second JavaScript alert within
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 extern const char kApplicationClientIDStringForAVScanning[]; 159 extern const char kApplicationClientIDStringForAVScanning[];
159 160
160 #if defined(OS_ANDROID) 161 #if defined(OS_ANDROID)
161 // The largest reasonable length we'd assume for a meta tag attribute. 162 // The largest reasonable length we'd assume for a meta tag attribute.
162 extern const size_t kMaxMetaTagAttributeLength; 163 extern const size_t kMaxMetaTagAttributeLength;
163 #endif 164 #endif
164 165
165 } // namespace chrome 166 } // namespace chrome
166 167
167 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698