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

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

Issue 5159001: Rest of the autofill work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff against the first part of the review. Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 303
304 // Disable syncing browser data to a Google Account. 304 // Disable syncing browser data to a Google Account.
305 const char kDisableSync[] = "disable-sync"; 305 const char kDisableSync[] = "disable-sync";
306 306
307 // Disable syncing of apps. 307 // Disable syncing of apps.
308 const char kDisableSyncApps[] = "disable-sync-apps"; 308 const char kDisableSyncApps[] = "disable-sync-apps";
309 309
310 // Disable syncing of autofill. 310 // Disable syncing of autofill.
311 const char kDisableSyncAutofill[] = "disable-sync-autofill"; 311 const char kDisableSyncAutofill[] = "disable-sync-autofill";
312 312
313 // Disable syncing of autofill Profile.
314 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile";
315
313 // Disable syncing of bookmarks. 316 // Disable syncing of bookmarks.
314 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; 317 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks";
315 318
316 // Disable syncing of extensions. 319 // Disable syncing of extensions.
317 const char kDisableSyncExtensions[] = "disable-sync-extensions"; 320 const char kDisableSyncExtensions[] = "disable-sync-extensions";
318 321
319 // Disable syncing of preferences. 322 // Disable syncing of preferences.
320 const char kDisableSyncPreferences[] = "disable-sync-preferences"; 323 const char kDisableSyncPreferences[] = "disable-sync-preferences";
321 324
322 // Disable syncing of themes. 325 // Disable syncing of themes.
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 1338
1336 // ----------------------------------------------------------------------------- 1339 // -----------------------------------------------------------------------------
1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1340 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1338 // 1341 //
1339 // You were going to just dump your switches here, weren't you? Instead, 1342 // You were going to just dump your switches here, weren't you? Instead,
1340 // please put them in alphabetical order above, or in order inside the 1343 // please put them in alphabetical order above, or in order inside the
1341 // appropriate ifdef at the bottom. The order should match the header. 1344 // appropriate ifdef at the bottom. The order should match the header.
1342 // ----------------------------------------------------------------------------- 1345 // -----------------------------------------------------------------------------
1343 1346
1344 } // namespace switches 1347 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698