| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; | 243 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; |
| 244 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; | 244 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; |
| 245 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; | 245 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; |
| 246 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; | 246 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; |
| 247 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; | 247 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; |
| 248 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; | 248 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; |
| 249 #if defined(OS_LINUX) | 249 #if defined(OS_LINUX) |
| 250 // GTK specific preference on whether we should match the system GTK theme. | 250 // GTK specific preference on whether we should match the system GTK theme. |
| 251 const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; | 251 const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; |
| 252 #endif | 252 #endif |
| 253 const wchar_t kCurrentThemePackFilename[] = L"extensions.theme.pack"; |
| 253 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; | 254 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; |
| 254 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; | 255 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; |
| 255 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; | 256 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; |
| 256 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; | 257 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; |
| 257 const wchar_t kCurrentThemeDisplayProperties[] = | 258 const wchar_t kCurrentThemeDisplayProperties[] = |
| 258 L"extensions.theme.properties"; | 259 L"extensions.theme.properties"; |
| 259 | 260 |
| 260 // Boolean pref which persists whether the extensions_ui is in developer mode | 261 // Boolean pref which persists whether the extensions_ui is in developer mode |
| 261 // (showing developer packing tools and extensions details) | 262 // (showing developer packing tools and extensions details) |
| 262 const wchar_t kExtensionsUIDeveloperMode[] = L"extensions.ui.developer_mode"; | 263 const wchar_t kExtensionsUIDeveloperMode[] = L"extensions.ui.developer_mode"; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 605 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 605 | 606 |
| 606 // Create web application shortcut dialog preferences. | 607 // Create web application shortcut dialog preferences. |
| 607 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 608 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
| 608 const wchar_t kWebAppCreateInAppsMenu[] = | 609 const wchar_t kWebAppCreateInAppsMenu[] = |
| 609 L"browser.web_app.create_in_apps_menu"; | 610 L"browser.web_app.create_in_apps_menu"; |
| 610 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 611 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
| 611 L"browser.web_app.create_in_quick_launch_bar"; | 612 L"browser.web_app.create_in_quick_launch_bar"; |
| 612 | 613 |
| 613 } // namespace prefs | 614 } // namespace prefs |
| OLD | NEW |