| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 // ibus-mozc converts the string values to protobuf enum values defined in | 247 // ibus-mozc converts the string values to protobuf enum values defined in |
| 248 // third_party/ibus-mozc/files/src/session/config.proto. | 248 // third_party/ibus-mozc/files/src/session/config.proto. |
| 249 const wchar_t kLanguageMozcPreeditMethod[] = | 249 const wchar_t kLanguageMozcPreeditMethod[] = |
| 250 L"settings.language.mozc_preedit_method"; | 250 L"settings.language.mozc_preedit_method"; |
| 251 const wchar_t kLanguageMozcSessionKeymap[] = | 251 const wchar_t kLanguageMozcSessionKeymap[] = |
| 252 L"settings.language.mozc_sessoin_keymap"; | 252 L"settings.language.mozc_sessoin_keymap"; |
| 253 const wchar_t kLanguageMozcPunctuationMethod[] = | 253 const wchar_t kLanguageMozcPunctuationMethod[] = |
| 254 L"settings.language.mozc_punctuation_method"; | 254 L"settings.language.mozc_punctuation_method"; |
| 255 const wchar_t kLanguageMozcSymbolMethod[] = | 255 const wchar_t kLanguageMozcSymbolMethod[] = |
| 256 L"settings.language.mozc_symbol_method"; | 256 L"settings.language.mozc_symbol_method"; |
| 257 |
| 258 // A boolean pref which determines whether accessibility is enabled. |
| 259 const wchar_t kAccessibilityEnabled[] = L"settings.accessibility"; |
| 257 #endif | 260 #endif |
| 258 | 261 |
| 259 // The disabled messages in IPC logging. | 262 // The disabled messages in IPC logging. |
| 260 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; | 263 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; |
| 261 | 264 |
| 262 // A boolean pref set to true if a Home button to open the Home pages should be | 265 // A boolean pref set to true if a Home button to open the Home pages should be |
| 263 // visible on the toolbar. | 266 // visible on the toolbar. |
| 264 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; | 267 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; |
| 265 | 268 |
| 266 // A boolean pref set to true if the Page and Options menu buttons should be | 269 // A boolean pref set to true if the Page and Options menu buttons should be |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 823 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 821 // The GAIA auth token for Cloud Print | 824 // The GAIA auth token for Cloud Print |
| 822 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; | 825 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; |
| 823 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 826 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| 824 // This should eventually go away because the above token should work for both. | 827 // This should eventually go away because the above token should work for both. |
| 825 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; | 828 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; |
| 826 // The email address of the account used to authenticate with the Cloud Print | 829 // The email address of the account used to authenticate with the Cloud Print |
| 827 // server. | 830 // server. |
| 828 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; | 831 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; |
| 829 } // namespace prefs | 832 } // namespace prefs |
| OLD | NEW |