OLD | NEW |
1 // Copyright (c) 2010 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" |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 extern const wchar_t kNTPShownSections[]; | 269 extern const wchar_t kNTPShownSections[]; |
270 extern const wchar_t kNTPAppLauncherFirstRun[]; | 270 extern const wchar_t kNTPAppLauncherFirstRun[]; |
271 extern const wchar_t kNTPPrefVersion[]; | 271 extern const wchar_t kNTPPrefVersion[]; |
272 | 272 |
273 extern const wchar_t kDevToolsOpenDocked[]; | 273 extern const wchar_t kDevToolsOpenDocked[]; |
274 extern const wchar_t kDevToolsSplitLocation[]; | 274 extern const wchar_t kDevToolsSplitLocation[]; |
275 | 275 |
276 extern const wchar_t kSyncLastSyncedTime[]; | 276 extern const wchar_t kSyncLastSyncedTime[]; |
277 extern const wchar_t kSyncHasSetupCompleted[]; | 277 extern const wchar_t kSyncHasSetupCompleted[]; |
278 extern const wchar_t kSyncBookmarks[]; | 278 extern const wchar_t kSyncBookmarks[]; |
| 279 extern const wchar_t kSyncPasswords[]; |
279 extern const wchar_t kSyncPreferences[]; | 280 extern const wchar_t kSyncPreferences[]; |
280 extern const wchar_t kSyncAutofill[]; | 281 extern const wchar_t kSyncAutofill[]; |
281 extern const wchar_t kSyncThemes[]; | 282 extern const wchar_t kSyncThemes[]; |
282 extern const wchar_t kSyncTypedUrls[]; | 283 extern const wchar_t kSyncTypedUrls[]; |
283 extern const wchar_t kSyncBootstrappedAuth[]; | 284 extern const wchar_t kSyncBootstrappedAuth[]; |
284 | 285 |
285 extern const wchar_t kWebAppCreateOnDesktop[]; | 286 extern const wchar_t kWebAppCreateOnDesktop[]; |
286 extern const wchar_t kWebAppCreateInAppsMenu[]; | 287 extern const wchar_t kWebAppCreateInAppsMenu[]; |
287 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 288 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
288 | 289 |
289 extern const wchar_t kGeolocationAccessToken[]; | 290 extern const wchar_t kGeolocationAccessToken[]; |
290 extern const wchar_t kGeolocationDefaultContentSetting[]; | 291 extern const wchar_t kGeolocationDefaultContentSetting[]; |
291 extern const wchar_t kGeolocationContentSettings[]; | 292 extern const wchar_t kGeolocationContentSettings[]; |
292 | 293 |
293 extern const wchar_t kLoginDatabaseMigrated[]; | 294 extern const wchar_t kLoginDatabaseMigrated[]; |
294 | 295 |
295 extern const wchar_t kCloudPrintServiceURL[]; | 296 extern const wchar_t kCloudPrintServiceURL[]; |
296 extern const wchar_t kCloudPrintProxyId[]; | 297 extern const wchar_t kCloudPrintProxyId[]; |
297 extern const wchar_t kCloudPrintProxyName[]; | 298 extern const wchar_t kCloudPrintProxyName[]; |
298 extern const wchar_t kCloudPrintAuthToken[]; | 299 extern const wchar_t kCloudPrintAuthToken[]; |
299 | 300 |
300 } // namespace prefs | 301 } // namespace prefs |
301 | 302 |
302 #endif // CHROME_COMMON_PREF_NAMES_H_ | 303 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |