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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will | 320 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will |
321 // be displayed at the default zoom level. | 321 // be displayed at the default zoom level. |
322 const wchar_t kPerHostZoomLevels[] = L"profile.per_host_zoom_levels"; | 322 const wchar_t kPerHostZoomLevels[] = L"profile.per_host_zoom_levels"; |
323 | 323 |
324 // Boolean that is true if the autofill infobar has been shown to the user. | 324 // Boolean that is true if the autofill infobar has been shown to the user. |
325 const wchar_t kAutoFillInfoBarShown[] = L"autofill.infobar_shown"; | 325 const wchar_t kAutoFillInfoBarShown[] = L"autofill.infobar_shown"; |
326 | 326 |
327 // Boolean that is true if autofill is enabled and allowed to save profile data. | 327 // Boolean that is true if autofill is enabled and allowed to save profile data. |
328 const wchar_t kAutoFillEnabled[] = L"autofill.enabled"; | 328 const wchar_t kAutoFillEnabled[] = L"autofill.enabled"; |
329 | 329 |
| 330 // Boolean that is true when auxiliary autofill profiles are enabled. |
| 331 // Currently applies to Address Book "me" card on Mac. False on Win and Linux. |
| 332 const wchar_t kAutoFillAuxiliaryProfilesEnabled[] = |
| 333 L"autofill.auxiliary_profiles_enabled"; |
| 334 |
330 // Position and size of the autofill dialog. | 335 // Position and size of the autofill dialog. |
331 const wchar_t kAutoFillDialogPlacement[] = L"autofill.dialog_placement"; | 336 const wchar_t kAutoFillDialogPlacement[] = L"autofill.dialog_placement"; |
332 | 337 |
333 // Dictionary that maps providers to lists of filter rules. | 338 // Dictionary that maps providers to lists of filter rules. |
334 const wchar_t kPrivacyFilterRules[] = L"profile.privacy_filter_rules"; | 339 const wchar_t kPrivacyFilterRules[] = L"profile.privacy_filter_rules"; |
335 | 340 |
336 // Boolean that is true when the tabstrip is to be laid out vertically down the | 341 // Boolean that is true when the tabstrip is to be laid out vertically down the |
337 // side of the browser window. | 342 // side of the browser window. |
338 const wchar_t kUseVerticalTabs[] = L"tabs.use_vertical_tabs"; | 343 const wchar_t kUseVerticalTabs[] = L"tabs.use_vertical_tabs"; |
339 | 344 |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 const wchar_t kWebAppCreateInAppsMenu[] = | 674 const wchar_t kWebAppCreateInAppsMenu[] = |
670 L"browser.web_app.create_in_apps_menu"; | 675 L"browser.web_app.create_in_apps_menu"; |
671 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 676 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
672 L"browser.web_app.create_in_quick_launch_bar"; | 677 L"browser.web_app.create_in_quick_launch_bar"; |
673 | 678 |
674 // Dictionary that maps Geolocation network provider server URLs to | 679 // Dictionary that maps Geolocation network provider server URLs to |
675 // corresponding access token. | 680 // corresponding access token. |
676 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; | 681 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; |
677 | 682 |
678 } // namespace prefs | 683 } // namespace prefs |
OLD | NEW |