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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 | 197 |
198 // Disable syncing browser data to a Google Account. | 198 // Disable syncing browser data to a Google Account. |
199 const char kDisableSync[] = "disable-sync"; | 199 const char kDisableSync[] = "disable-sync"; |
200 | 200 |
201 // Disable syncing of autofill. | 201 // Disable syncing of autofill. |
202 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 202 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
203 | 203 |
204 // Disable syncing of bookmarks. | 204 // Disable syncing of bookmarks. |
205 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 205 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
206 | 206 |
| 207 // Disable syncing of extensions. |
| 208 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 209 |
207 // Disable syncing of passwords. | 210 // Disable syncing of passwords. |
208 const char kDisableSyncPasswords[] = "disable-sync-passwords"; | 211 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
209 | 212 |
210 // Disable syncing of preferences. | 213 // Disable syncing of preferences. |
211 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 214 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
212 | 215 |
213 // Disable syncing of themes. | 216 // Disable syncing of themes. |
214 const char kDisableSyncThemes[] = "disable-sync-themes"; | 217 const char kDisableSyncThemes[] = "disable-sync-themes"; |
215 | 218 |
216 // Disable syncing of typed urls. | 219 // Disable syncing of typed urls. |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 | 348 |
346 // Enable syncing browser data to a Google Account. | 349 // Enable syncing browser data to a Google Account. |
347 const char kEnableSync[] = "enable-sync"; | 350 const char kEnableSync[] = "enable-sync"; |
348 | 351 |
349 // Enable syncing browser autofill. | 352 // Enable syncing browser autofill. |
350 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 353 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
351 | 354 |
352 // Enable syncing browser bookmarks. | 355 // Enable syncing browser bookmarks. |
353 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; | 356 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; |
354 | 357 |
| 358 // Enable syncing browser extensions. |
| 359 const char kEnableSyncExtensions[] = "enable-sync-extensions"; |
| 360 |
355 // Enable syncing browser passwords. | 361 // Enable syncing browser passwords. |
356 const char kEnableSyncPasswords[] = "enable-sync-passwords"; | 362 const char kEnableSyncPasswords[] = "enable-sync-passwords"; |
357 | 363 |
358 // Enable syncing browser preferences. | 364 // Enable syncing browser preferences. |
359 const char kEnableSyncPreferences[] = "enable-sync-preferences"; | 365 const char kEnableSyncPreferences[] = "enable-sync-preferences"; |
360 | 366 |
361 // Enable syncing browser themes. | 367 // Enable syncing browser themes. |
362 const char kEnableSyncThemes[] = "enable-sync-themes"; | 368 const char kEnableSyncThemes[] = "enable-sync-themes"; |
363 | 369 |
364 // Enable syncing browser typed urls. | 370 // Enable syncing browser typed urls. |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
986 | 992 |
987 // ----------------------------------------------------------------------------- | 993 // ----------------------------------------------------------------------------- |
988 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 994 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
989 // | 995 // |
990 // You were going to just dump your switches here, weren't you? Instead, | 996 // You were going to just dump your switches here, weren't you? Instead, |
991 // please put them in alphabetical order above, or in order inside the | 997 // please put them in alphabetical order above, or in order inside the |
992 // appropriate ifdef at the bottom. The order should match the header. | 998 // appropriate ifdef at the bottom. The order should match the header. |
993 // ----------------------------------------------------------------------------- | 999 // ----------------------------------------------------------------------------- |
994 | 1000 |
995 } // namespace switches | 1001 } // namespace switches |
OLD | NEW |