Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1090)

Side by Side Diff: chrome/common/pref_names.cc

Issue 480953002: Implement "Autofill form data" import for Firefox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback (simplify Read method) Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/data/firefox_profile/formhistory.sqlite » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after
1100 1100
1101 // GL_VENDOR string. 1101 // GL_VENDOR string.
1102 const char kGLVendorString[] = "gl_vendor_string"; 1102 const char kGLVendorString[] = "gl_vendor_string";
1103 1103
1104 // GL_RENDERER string. 1104 // GL_RENDERER string.
1105 const char kGLRendererString[] = "gl_renderer_string"; 1105 const char kGLRendererString[] = "gl_renderer_string";
1106 1106
1107 // GL_VERSION string. 1107 // GL_VERSION string.
1108 const char kGLVersionString[] = "gl_version_string"; 1108 const char kGLVersionString[] = "gl_version_string";
1109 1109
1110 // Boolean that specifies whether to import the form data for autofill from the
1111 // default browser on first run.
1112 const char kImportAutofillFormData[] = "import_autofill_form_data";
1113
1110 // Boolean that specifies whether to import bookmarks from the default browser 1114 // Boolean that specifies whether to import bookmarks from the default browser
1111 // on first run. 1115 // on first run.
1112 const char kImportBookmarks[] = "import_bookmarks"; 1116 const char kImportBookmarks[] = "import_bookmarks";
1113 1117
1114 // Boolean that specifies whether to import the browsing history from the 1118 // Boolean that specifies whether to import the browsing history from the
1115 // default browser on first run. 1119 // default browser on first run.
1116 const char kImportHistory[] = "import_history"; 1120 const char kImportHistory[] = "import_history";
1117 1121
1118 // Boolean that specifies whether to import the homepage from the default 1122 // Boolean that specifies whether to import the homepage from the default
1119 // browser on first run. 1123 // browser on first run.
1120 const char kImportHomepage[] = "import_home_page"; 1124 const char kImportHomepage[] = "import_home_page";
1121 1125
1126 // Boolean that specifies whether to import the saved passwords from the default
1127 // browser on first run.
1128 const char kImportSavedPasswords[] = "import_saved_passwords";
1129
1122 // Boolean that specifies whether to import the search engine from the default 1130 // Boolean that specifies whether to import the search engine from the default
1123 // browser on first run. 1131 // browser on first run.
1124 const char kImportSearchEngine[] = "import_search_engine"; 1132 const char kImportSearchEngine[] = "import_search_engine";
1125 1133
1126 // Boolean that specifies whether to import the saved passwords from the default
1127 // browser on first run.
1128 const char kImportSavedPasswords[] = "import_saved_passwords";
1129
1130 // Profile avatar and name 1134 // Profile avatar and name
1131 const char kProfileAvatarIndex[] = "profile.avatar_index"; 1135 const char kProfileAvatarIndex[] = "profile.avatar_index";
1132 const char kProfileName[] = "profile.name"; 1136 const char kProfileName[] = "profile.name";
1133 // Whether a profile is using a default avatar name (eg. Pickles or Person 1) 1137 // Whether a profile is using a default avatar name (eg. Pickles or Person 1)
1134 // because it was randomly assigned at profile creation time. 1138 // because it was randomly assigned at profile creation time.
1135 const char kProfileUsingDefaultName[] = "profile.using_default_name"; 1139 const char kProfileUsingDefaultName[] = "profile.using_default_name";
1136 // Whether a profile is using an avatar without having explicitely chosen it 1140 // Whether a profile is using an avatar without having explicitely chosen it
1137 // (i.e. was assigned by default by legacy profile creation). 1141 // (i.e. was assigned by default by legacy profile creation).
1138 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar"; 1142 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar";
1139 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar"; 1143 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar";
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after
2318 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2322 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2319 #endif 2323 #endif
2320 2324
2321 // Whether DNS Quick Check is disabled in proxy resolution. 2325 // Whether DNS Quick Check is disabled in proxy resolution.
2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2326 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2323 2327
2324 // Whether Guest Mode is enabled within the browser. 2328 // Whether Guest Mode is enabled within the browser.
2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2329 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2326 2330
2327 } // namespace prefs 2331 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/data/firefox_profile/formhistory.sqlite » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698