| 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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 kEnableExtensions[] = L"extensions.enabled"; |
| 538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | 538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; |
| 539 | 539 |
| 540 // Boolean which specifies whether the Extension Shelf is visible on all tabs. |
| 541 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; |
| 542 |
| 540 // Time of the last, and next scheduled, extensions auto-update checks. | 543 // Time of the last, and next scheduled, extensions auto-update checks. |
| 541 const wchar_t kLastExtensionsUpdateCheck[] = | 544 const wchar_t kLastExtensionsUpdateCheck[] = |
| 542 L"extensions.autoupdate.last_check"; | 545 L"extensions.autoupdate.last_check"; |
| 543 const wchar_t kNextExtensionsUpdateCheck[] = | 546 const wchar_t kNextExtensionsUpdateCheck[] = |
| 544 L"extensions.autoupdate.next_check"; | 547 L"extensions.autoupdate.next_check"; |
| 545 // Version number of last blacklist check | 548 // Version number of last blacklist check |
| 546 const wchar_t kExtensionBlacklistUpdateVersion[] = | 549 const wchar_t kExtensionBlacklistUpdateVersion[] = |
| 547 L"extensions.blacklistupdate.version"; | 550 L"extensions.blacklistupdate.version"; |
| 548 | 551 |
| 549 // New Tab Page URLs that should not be shown as most visited thumbnails. | 552 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 576 // Integer location of the split bar in the browser view. | 579 // Integer location of the split bar in the browser view. |
| 577 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 580 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
| 578 | 581 |
| 579 // 64-bit integer serialization of the base::Time when the last sync occured. | 582 // 64-bit integer serialization of the base::Time when the last sync occured. |
| 580 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 583 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
| 581 | 584 |
| 582 // Boolean specifying whether the user finished setting up sync. | 585 // Boolean specifying whether the user finished setting up sync. |
| 583 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 586 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 584 | 587 |
| 585 } // namespace prefs | 588 } // namespace prefs |
| OLD | NEW |