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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
574 // Last time of update of tips_cache. | 574 // Last time of update of tips_cache. |
575 const wchar_t kNTPTipsCacheUpdate[] = L"ntp.tips_cache_update"; | 575 const wchar_t kNTPTipsCacheUpdate[] = L"ntp.tips_cache_update"; |
576 | 576 |
577 // Last server used to fill tips_cache. | 577 // Last server used to fill tips_cache. |
578 const wchar_t kNTPTipsServer[] = L"ntp.tips_server"; | 578 const wchar_t kNTPTipsServer[] = L"ntp.tips_server"; |
579 | 579 |
580 // Which sections should be visible on the new tab page | 580 // Which sections should be visible on the new tab page |
581 // 1 - Show the most visited sites in a grid | 581 // 1 - Show the most visited sites in a grid |
582 // 2 - Show the most visited sites as a list | 582 // 2 - Show the most visited sites as a list |
583 // 4 - Show the recent section | 583 // 4 - Show the recent section |
584 // 8 - Show recommendations | 584 // 8 - Show tips |
| 585 // 16 - show sync status |
585 const wchar_t kNTPShownSections[] = L"ntp.shown_sections"; | 586 const wchar_t kNTPShownSections[] = L"ntp.shown_sections"; |
586 | 587 |
| 588 // This pref is used for migrating the prefs for the NTP |
| 589 const wchar_t kNTPPrefVersion[] = L"ntp.pref_version"; |
| 590 |
587 // A boolean specifying whether dev tools window should be opened docked. | 591 // A boolean specifying whether dev tools window should be opened docked. |
588 const wchar_t kDevToolsOpenDocked[] = L"devtools.open_docked"; | 592 const wchar_t kDevToolsOpenDocked[] = L"devtools.open_docked"; |
589 | 593 |
590 // Integer location of the split bar in the browser view. | 594 // Integer location of the split bar in the browser view. |
591 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 595 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
592 | 596 |
593 // 64-bit integer serialization of the base::Time when the last sync occured. | 597 // 64-bit integer serialization of the base::Time when the last sync occured. |
594 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 598 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
595 | 599 |
596 // Boolean specifying whether the user finished setting up sync. | 600 // Boolean specifying whether the user finished setting up sync. |
597 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 601 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
598 | 602 |
599 } // namespace prefs | 603 } // namespace prefs |
OLD | NEW |