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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 | 205 |
206 // Disable syncing browser data to a Google Account. | 206 // Disable syncing browser data to a Google Account. |
207 const char kDisableSync[] = "disable-sync"; | 207 const char kDisableSync[] = "disable-sync"; |
208 | 208 |
209 // Disable syncing of autofill. | 209 // Disable syncing of autofill. |
210 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 210 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
211 | 211 |
212 // Disable syncing of bookmarks. | 212 // Disable syncing of bookmarks. |
213 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 213 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
214 | 214 |
| 215 // Disable syncing of passwords. |
| 216 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
| 217 |
215 // Disable syncing of preferences. | 218 // Disable syncing of preferences. |
216 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 219 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
217 | 220 |
218 // Disable syncing of themes. | 221 // Disable syncing of themes. |
219 const char kDisableSyncThemes[] = "disable-sync-themes"; | 222 const char kDisableSyncThemes[] = "disable-sync-themes"; |
220 | 223 |
221 // Disable syncing of typed urls. | 224 // Disable syncing of typed urls. |
222 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; | 225 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; |
223 | 226 |
224 // Enables the backend service for web resources, used in the new tab page for | 227 // Enables the backend service for web resources, used in the new tab page for |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 347 |
345 // Enable syncing browser data to a Google Account. | 348 // Enable syncing browser data to a Google Account. |
346 const char kEnableSync[] = "enable-sync"; | 349 const char kEnableSync[] = "enable-sync"; |
347 | 350 |
348 // Enable syncing browser autofill. | 351 // Enable syncing browser autofill. |
349 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 352 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
350 | 353 |
351 // Enable syncing browser bookmarks. | 354 // Enable syncing browser bookmarks. |
352 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; | 355 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; |
353 | 356 |
| 357 // Enable syncing browser passwords. |
| 358 const char kEnableSyncPasswords[] = "enable-sync-passwords"; |
| 359 |
354 // Enable syncing browser preferences. | 360 // Enable syncing browser preferences. |
355 const char kEnableSyncPreferences[] = "enable-sync-preferences"; | 361 const char kEnableSyncPreferences[] = "enable-sync-preferences"; |
356 | 362 |
357 // Enable syncing browser themes. | 363 // Enable syncing browser themes. |
358 const char kEnableSyncThemes[] = "enable-sync-themes"; | 364 const char kEnableSyncThemes[] = "enable-sync-themes"; |
359 | 365 |
360 // Enable syncing browser typed urls. | 366 // Enable syncing browser typed urls. |
361 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 367 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
362 | 368 |
363 // Whether or not the touch events API is exposed. | 369 // Whether or not the touch events API is exposed. |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
972 | 978 |
973 // ----------------------------------------------------------------------------- | 979 // ----------------------------------------------------------------------------- |
974 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 980 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
975 // | 981 // |
976 // You were going to just dump your switches here, weren't you? Instead, | 982 // You were going to just dump your switches here, weren't you? Instead, |
977 // please put them in alphabetical order above, or in order inside the | 983 // please put them in alphabetical order above, or in order inside the |
978 // appropriate ifdef at the bottom. The order should match the header. | 984 // appropriate ifdef at the bottom. The order should match the header. |
979 // ----------------------------------------------------------------------------- | 985 // ----------------------------------------------------------------------------- |
980 | 986 |
981 } // namespace switches | 987 } // namespace switches |
OLD | NEW |