| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 L"user_experience_metrics.num_folders_on_bookmark_bar"; | 527 L"user_experience_metrics.num_folders_on_bookmark_bar"; |
| 528 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = | 528 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = |
| 529 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; | 529 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; |
| 530 const wchar_t kNumFoldersInOtherBookmarkFolder[] = | 530 const wchar_t kNumFoldersInOtherBookmarkFolder[] = |
| 531 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 531 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
| 532 | 532 |
| 533 // Number of keywords. | 533 // Number of keywords. |
| 534 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 534 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
| 535 | 535 |
| 536 // Whether Extensions or User Scripts are enabled. | 536 // Whether Extensions or User Scripts are enabled. |
| 537 const wchar_t kEnableExtensions[] = L"extensions.enabled"; | 537 const wchar_t kDisableExtensions[] = L"extensions.disabled"; |
| 538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | 538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; |
| 539 | 539 |
| 540 // Time of the last, and next scheduled, extensions auto-update checks. | 540 // Time of the last, and next scheduled, extensions auto-update checks. |
| 541 const wchar_t kLastExtensionsUpdateCheck[] = | 541 const wchar_t kLastExtensionsUpdateCheck[] = |
| 542 L"extensions.autoupdate.last_check"; | 542 L"extensions.autoupdate.last_check"; |
| 543 const wchar_t kNextExtensionsUpdateCheck[] = | 543 const wchar_t kNextExtensionsUpdateCheck[] = |
| 544 L"extensions.autoupdate.next_check"; | 544 L"extensions.autoupdate.next_check"; |
| 545 // Version number of last blacklist check | 545 // Version number of last blacklist check |
| 546 const wchar_t kExtensionBlacklistUpdateVersion[] = | 546 const wchar_t kExtensionBlacklistUpdateVersion[] = |
| 547 L"extensions.blacklistupdate.version"; | 547 L"extensions.blacklistupdate.version"; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 576 // Integer location of the split bar in the browser view. | 576 // Integer location of the split bar in the browser view. |
| 577 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 577 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
| 578 | 578 |
| 579 // 64-bit integer serialization of the base::Time when the last sync occured. | 579 // 64-bit integer serialization of the base::Time when the last sync occured. |
| 580 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 580 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
| 581 | 581 |
| 582 // Boolean specifying whether the user finished setting up sync. | 582 // Boolean specifying whether the user finished setting up sync. |
| 583 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 583 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 584 | 584 |
| 585 } // namespace prefs | 585 } // namespace prefs |
| OLD | NEW |