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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 extern const wchar_t kSyncLastSyncedTime[]; | 310 extern const wchar_t kSyncLastSyncedTime[]; |
311 extern const wchar_t kSyncHasSetupCompleted[]; | 311 extern const wchar_t kSyncHasSetupCompleted[]; |
312 extern const wchar_t kKeepEverythingSynced[]; | 312 extern const wchar_t kKeepEverythingSynced[]; |
313 extern const wchar_t kSyncBookmarks[]; | 313 extern const wchar_t kSyncBookmarks[]; |
314 extern const wchar_t kSyncPasswords[]; | 314 extern const wchar_t kSyncPasswords[]; |
315 extern const wchar_t kSyncPreferences[]; | 315 extern const wchar_t kSyncPreferences[]; |
316 extern const wchar_t kSyncAutofill[]; | 316 extern const wchar_t kSyncAutofill[]; |
317 extern const wchar_t kSyncThemes[]; | 317 extern const wchar_t kSyncThemes[]; |
318 extern const wchar_t kSyncTypedUrls[]; | 318 extern const wchar_t kSyncTypedUrls[]; |
319 extern const wchar_t kSyncExtensions[]; | 319 extern const wchar_t kSyncExtensions[]; |
| 320 extern const wchar_t kSyncManaged[]; |
320 | 321 |
321 extern const wchar_t kWebAppCreateOnDesktop[]; | 322 extern const wchar_t kWebAppCreateOnDesktop[]; |
322 extern const wchar_t kWebAppCreateInAppsMenu[]; | 323 extern const wchar_t kWebAppCreateInAppsMenu[]; |
323 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 324 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
324 | 325 |
325 extern const wchar_t kGeolocationAccessToken[]; | 326 extern const wchar_t kGeolocationAccessToken[]; |
326 extern const wchar_t kGeolocationDefaultContentSetting[]; | 327 extern const wchar_t kGeolocationDefaultContentSetting[]; |
327 extern const wchar_t kGeolocationContentSettings[]; | 328 extern const wchar_t kGeolocationContentSettings[]; |
328 | 329 |
329 extern const wchar_t kLoginDatabaseMigrated[]; | 330 extern const wchar_t kLoginDatabaseMigrated[]; |
330 | 331 |
331 extern const wchar_t kCloudPrintServiceURL[]; | 332 extern const wchar_t kCloudPrintServiceURL[]; |
332 extern const wchar_t kCloudPrintProxyId[]; | 333 extern const wchar_t kCloudPrintProxyId[]; |
333 extern const wchar_t kCloudPrintAuthToken[]; | 334 extern const wchar_t kCloudPrintAuthToken[]; |
334 extern const wchar_t kCloudPrintXMPPAuthToken[]; | 335 extern const wchar_t kCloudPrintXMPPAuthToken[]; |
335 extern const wchar_t kCloudPrintEmail[]; | 336 extern const wchar_t kCloudPrintEmail[]; |
336 extern const wchar_t kCloudPrintPrintSystemSettings[]; | 337 extern const wchar_t kCloudPrintPrintSystemSettings[]; |
337 | 338 |
338 extern const wchar_t kNoProxyServer[]; | 339 extern const wchar_t kNoProxyServer[]; |
339 extern const wchar_t kProxyAutoDetect[]; | 340 extern const wchar_t kProxyAutoDetect[]; |
340 extern const wchar_t kProxyServer[]; | 341 extern const wchar_t kProxyServer[]; |
341 extern const wchar_t kProxyPacUrl[]; | 342 extern const wchar_t kProxyPacUrl[]; |
342 extern const wchar_t kProxyBypassList[]; | 343 extern const wchar_t kProxyBypassList[]; |
343 | 344 |
344 extern const wchar_t kRegisteredBackgroundContents[]; | 345 extern const wchar_t kRegisteredBackgroundContents[]; |
345 | 346 |
346 } // namespace prefs | 347 } // namespace prefs |
347 | 348 |
348 #endif // CHROME_COMMON_PREF_NAMES_H_ | 349 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |