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

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: Couple of lint errors sneaked into my previous patch. This is clean of lint errors. Created 10 years 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 311
312 // Disable syncing browser data to a Google Account. 312 // Disable syncing browser data to a Google Account.
313 const char kDisableSync[] = "disable-sync"; 313 const char kDisableSync[] = "disable-sync";
314 314
315 // Disable syncing of apps. 315 // Disable syncing of apps.
316 const char kDisableSyncApps[] = "disable-sync-apps"; 316 const char kDisableSyncApps[] = "disable-sync-apps";
317 317
318 // Disable syncing of autofill. 318 // Disable syncing of autofill.
319 const char kDisableSyncAutofill[] = "disable-sync-autofill"; 319 const char kDisableSyncAutofill[] = "disable-sync-autofill";
320 320
321 // Disable syncing of autofill Profile.
322 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile";
323
321 // Disable syncing of bookmarks. 324 // Disable syncing of bookmarks.
322 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; 325 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks";
323 326
324 // Disable syncing of extensions. 327 // Disable syncing of extensions.
325 const char kDisableSyncExtensions[] = "disable-sync-extensions"; 328 const char kDisableSyncExtensions[] = "disable-sync-extensions";
326 329
327 // Disable syncing of preferences. 330 // Disable syncing of preferences.
328 const char kDisableSyncPreferences[] = "disable-sync-preferences"; 331 const char kDisableSyncPreferences[] = "disable-sync-preferences";
329 332
330 // Disable syncing of themes. 333 // Disable syncing of themes.
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 1374
1372 // ----------------------------------------------------------------------------- 1375 // -----------------------------------------------------------------------------
1373 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1374 // 1377 //
1375 // You were going to just dump your switches here, weren't you? Instead, 1378 // You were going to just dump your switches here, weren't you? Instead,
1376 // please put them in alphabetical order above, or in order inside the 1379 // please put them in alphabetical order above, or in order inside the
1377 // appropriate ifdef at the bottom. The order should match the header. 1380 // appropriate ifdef at the bottom. The order should match the header.
1378 // ----------------------------------------------------------------------------- 1381 // -----------------------------------------------------------------------------
1379 1382
1380 } // namespace switches 1383 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698