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

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: Added test case 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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 const char kImportHomepage[] = "import_home_page"; 1127 const char kImportHomepage[] = "import_home_page";
1128 1128
1129 // Boolean that specifies whether to import the search engine from the default 1129 // Boolean that specifies whether to import the search engine from the default
1130 // browser on first run. 1130 // browser on first run.
1131 const char kImportSearchEngine[] = "import_search_engine"; 1131 const char kImportSearchEngine[] = "import_search_engine";
1132 1132
1133 // Boolean that specifies whether to import the saved passwords from the default 1133 // Boolean that specifies whether to import the saved passwords from the default
1134 // browser on first run. 1134 // browser on first run.
1135 const char kImportSavedPasswords[] = "import_saved_passwords"; 1135 const char kImportSavedPasswords[] = "import_saved_passwords";
1136 1136
1137 // Boolean that specifies whether to import the form data for autofill from the
1138 // default browser on first run.
1139 const char kImportAutofillFormData[] = "import_autofill_form_data";
Ilya Sherman 2014/08/20 05:47:41 Hmm, does this only affect first-run? Is there an
Nikhil 2014/08/20 11:29:17 I think this is only for registering preferences w
Ilya Sherman 2014/08/20 20:47:22 If that's so, then let's update the comment for th
Nikhil 2014/08/21 07:35:36 [1] Feature works fine even if we remove this pref
1140
1137 // Profile avatar and name 1141 // Profile avatar and name
1138 const char kProfileAvatarIndex[] = "profile.avatar_index"; 1142 const char kProfileAvatarIndex[] = "profile.avatar_index";
1139 const char kProfileName[] = "profile.name"; 1143 const char kProfileName[] = "profile.name";
1140 // Whether a profile is using a default avatar name (eg. Pickles or Person 1) 1144 // Whether a profile is using a default avatar name (eg. Pickles or Person 1)
1141 // because it was randomly assigned at profile creation time. 1145 // because it was randomly assigned at profile creation time.
1142 const char kProfileUsingDefaultName[] = "profile.using_default_name"; 1146 const char kProfileUsingDefaultName[] = "profile.using_default_name";
1143 // Whether a profile is using an avatar without having explicitely chosen it 1147 // Whether a profile is using an avatar without having explicitely chosen it
1144 // (i.e. was assigned by default by legacy profile creation). 1148 // (i.e. was assigned by default by legacy profile creation).
1145 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar"; 1149 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar";
1146 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar"; 1150 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar";
(...skipping 1189 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