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

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: Updated test case and binary file Created 6 years, 4 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
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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1110 1110
1111 // GL_VENDOR string. 1111 // GL_VENDOR string.
1112 const char kGLVendorString[] = "gl_vendor_string"; 1112 const char kGLVendorString[] = "gl_vendor_string";
1113 1113
1114 // GL_RENDERER string. 1114 // GL_RENDERER string.
1115 const char kGLRendererString[] = "gl_renderer_string"; 1115 const char kGLRendererString[] = "gl_renderer_string";
1116 1116
1117 // GL_VERSION string. 1117 // GL_VERSION string.
1118 const char kGLVersionString[] = "gl_version_string"; 1118 const char kGLVersionString[] = "gl_version_string";
1119 1119
1120 // Boolean that specifies whether to import the form data for autofill from the
1121 // default browser on first run.
1122 const char kImportAutofillFormData[] = "import_autofill_form_data";
1123
1120 // Boolean that specifies whether to import bookmarks from the default browser 1124 // Boolean that specifies whether to import bookmarks from the default browser
1121 // on first run. 1125 // on first run.
1122 const char kImportBookmarks[] = "import_bookmarks"; 1126 const char kImportBookmarks[] = "import_bookmarks";
1123 1127
1124 // Boolean that specifies whether to import the browsing history from the 1128 // Boolean that specifies whether to import the browsing history from the
1125 // default browser on first run. 1129 // default browser on first run.
1126 const char kImportHistory[] = "import_history"; 1130 const char kImportHistory[] = "import_history";
1127 1131
1128 // Boolean that specifies whether to import the homepage from the default 1132 // Boolean that specifies whether to import the homepage from the default
1129 // browser on first run. 1133 // browser on first run.
1130 const char kImportHomepage[] = "import_home_page"; 1134 const char kImportHomepage[] = "import_home_page";
1131 1135
1136 // Boolean that specifies whether to import the saved passwords from the default
1137 // browser on first run.
1138 const char kImportSavedPasswords[] = "import_saved_passwords";
1139
1132 // Boolean that specifies whether to import the search engine from the default 1140 // Boolean that specifies whether to import the search engine from the default
1133 // browser on first run. 1141 // browser on first run.
1134 const char kImportSearchEngine[] = "import_search_engine"; 1142 const char kImportSearchEngine[] = "import_search_engine";
1135 1143
1136 // Boolean that specifies whether to import the saved passwords from the default
1137 // browser on first run.
1138 const char kImportSavedPasswords[] = "import_saved_passwords";
1139
1140 // Profile avatar and name 1144 // Profile avatar and name
1141 const char kProfileAvatarIndex[] = "profile.avatar_index"; 1145 const char kProfileAvatarIndex[] = "profile.avatar_index";
1142 const char kProfileName[] = "profile.name"; 1146 const char kProfileName[] = "profile.name";
1143 // Whether a profile is using a default avatar name (eg. Pickles or Person 1) 1147 // Whether a profile is using a default avatar name (eg. Pickles or Person 1)
1144 // because it was randomly assigned at profile creation time. 1148 // because it was randomly assigned at profile creation time.
1145 const char kProfileUsingDefaultName[] = "profile.using_default_name"; 1149 const char kProfileUsingDefaultName[] = "profile.using_default_name";
1146 // Whether a profile is using an avatar without having explicitely chosen it 1150 // Whether a profile is using an avatar without having explicitely chosen it
1147 // (i.e. was assigned by default by legacy profile creation). 1151 // (i.e. was assigned by default by legacy profile creation).
1148 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar"; 1152 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar";
1149 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar"; 1153 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar";
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2340 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2337 #endif 2341 #endif
2338 2342
2339 // Whether DNS Quick Check is disabled in proxy resolution. 2343 // Whether DNS Quick Check is disabled in proxy resolution.
2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2344 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2341 2345
2342 // Whether Guest Mode is enabled within the browser. 2346 // Whether Guest Mode is enabled within the browser.
2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2347 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2344 2348
2345 } // namespace prefs 2349 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698