OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 | 11 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 | 186 |
187 extern const wchar_t kSafeBrowsingClientKey[]; | 187 extern const wchar_t kSafeBrowsingClientKey[]; |
188 extern const wchar_t kSafeBrowsingWrappedKey[]; | 188 extern const wchar_t kSafeBrowsingWrappedKey[]; |
189 | 189 |
190 extern const wchar_t kOptionsWindowLastTabIndex[]; | 190 extern const wchar_t kOptionsWindowLastTabIndex[]; |
191 extern const wchar_t kShouldShowFirstRunBubble[]; | 191 extern const wchar_t kShouldShowFirstRunBubble[]; |
192 extern const wchar_t kShouldUseOEMFirstRunBubble[]; | 192 extern const wchar_t kShouldUseOEMFirstRunBubble[]; |
193 extern const wchar_t kShouldShowWelcomePage[]; | 193 extern const wchar_t kShouldShowWelcomePage[]; |
194 | 194 |
195 extern const wchar_t kLastKnownGoogleURL[]; | 195 extern const wchar_t kLastKnownGoogleURL[]; |
| 196 extern const wchar_t kLastKnownIntranetRedirectOrigin[]; |
196 | 197 |
197 extern const wchar_t kCountryIDAtInstall[]; | 198 extern const wchar_t kCountryIDAtInstall[]; |
198 extern const wchar_t kGeoIDAtInstall[]; // OBSOLETE | 199 extern const wchar_t kGeoIDAtInstall[]; // OBSOLETE |
199 | 200 |
200 extern const wchar_t kShutdownType[]; | 201 extern const wchar_t kShutdownType[]; |
201 extern const wchar_t kShutdownNumProcesses[]; | 202 extern const wchar_t kShutdownNumProcesses[]; |
202 extern const wchar_t kShutdownNumProcessesSlow[]; | 203 extern const wchar_t kShutdownNumProcessesSlow[]; |
203 | 204 |
204 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 205 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
205 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 206 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
(...skipping 24 matching lines...) Expand all Loading... |
230 extern const wchar_t kSyncLastSyncedTime[]; | 231 extern const wchar_t kSyncLastSyncedTime[]; |
231 extern const wchar_t kSyncHasSetupCompleted[]; | 232 extern const wchar_t kSyncHasSetupCompleted[]; |
232 | 233 |
233 extern const wchar_t kWebAppCreateOnDesktop[]; | 234 extern const wchar_t kWebAppCreateOnDesktop[]; |
234 extern const wchar_t kWebAppCreateInAppsMenu[]; | 235 extern const wchar_t kWebAppCreateInAppsMenu[]; |
235 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 236 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
236 | 237 |
237 } // namespace prefs | 238 } // namespace prefs |
238 | 239 |
239 #endif // CHROME_COMMON_PREF_NAMES_H_ | 240 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |