OLD | NEW |
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 Loading... |
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 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 | 1371 |
1369 // ----------------------------------------------------------------------------- | 1372 // ----------------------------------------------------------------------------- |
1370 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1373 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1371 // | 1374 // |
1372 // You were going to just dump your switches here, weren't you? Instead, | 1375 // You were going to just dump your switches here, weren't you? Instead, |
1373 // please put them in alphabetical order above, or in order inside the | 1376 // please put them in alphabetical order above, or in order inside the |
1374 // appropriate ifdef at the bottom. The order should match the header. | 1377 // appropriate ifdef at the bottom. The order should match the header. |
1375 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
1376 | 1379 |
1377 } // namespace switches | 1380 } // namespace switches |
OLD | NEW |