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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
242 // Boolean pref to define the default values for using auto spell correct. | 242 // Boolean pref to define the default values for using auto spell correct. |
243 const wchar_t kEnableAutoSpellCorrect[] = L"browser.enable_autospellcorrect"; | 243 const wchar_t kEnableAutoSpellCorrect[] = L"browser.enable_autospellcorrect"; |
244 | 244 |
245 // String pref to define the default values for print overlays. | 245 // String pref to define the default values for print overlays. |
246 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; | 246 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; |
247 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; | 247 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; |
248 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; | 248 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; |
249 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; | 249 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; |
250 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; | 250 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; |
251 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; | 251 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; |
252 #if defined(OS_LINUX) | |
tony
2009/07/07 19:47:05
same thing about #if.
| |
253 // GTK specific preference on whether we should match the system GTK theme. | |
254 const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; | |
255 #endif | |
252 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; | 256 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; |
253 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; | 257 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; |
254 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; | 258 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; |
255 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; | 259 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; |
256 const wchar_t kCurrentThemeDisplayProperties[] = | 260 const wchar_t kCurrentThemeDisplayProperties[] = |
257 L"extensions.theme.display_properties"; | 261 L"extensions.theme.display_properties"; |
258 | 262 |
259 // Boolean that indicates whether we should check if we are the default browser | 263 // Boolean that indicates whether we should check if we are the default browser |
260 // on start-up. | 264 // on start-up. |
261 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; | 265 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
543 // 8 - Show recommendations | 547 // 8 - Show recommendations |
544 const wchar_t kNTPShownSections[] = L"ntp.shown_sections"; | 548 const wchar_t kNTPShownSections[] = L"ntp.shown_sections"; |
545 | 549 |
546 // A boolean specifying whether dev tools window should be opened docked. | 550 // A boolean specifying whether dev tools window should be opened docked. |
547 const wchar_t kDevToolsOpenDocked[] = L"devtools.open_docked"; | 551 const wchar_t kDevToolsOpenDocked[] = L"devtools.open_docked"; |
548 | 552 |
549 // Integer location of the split bar in the browser view. | 553 // Integer location of the split bar in the browser view. |
550 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 554 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
551 | 555 |
552 } // namespace prefs | 556 } // namespace prefs |
OLD | NEW |