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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 | 338 |
339 // Enable speculative TCP/IP preconnection. | 339 // Enable speculative TCP/IP preconnection. |
340 const char kEnablePreconnect[] = "enable-preconnect"; | 340 const char kEnablePreconnect[] = "enable-preconnect"; |
341 | 341 |
342 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 342 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
343 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 343 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
344 | 344 |
345 // Enable print preview (work in progress). | 345 // Enable print preview (work in progress). |
346 const char kEnablePrintPreview[] = "enable-print-preview"; | 346 const char kEnablePrintPreview[] = "enable-print-preview"; |
347 | 347 |
348 // Enable Privacy Blacklists. | |
349 const char kEnablePrivacyBlacklists[] = "enable-privacy-blacklists"; | |
350 | |
351 // Enables StatsTable, logging statistics to a global named shared memory table. | 348 // Enables StatsTable, logging statistics to a global named shared memory table. |
352 const char kEnableStatsTable[] = "enable-stats-table"; | 349 const char kEnableStatsTable[] = "enable-stats-table"; |
353 | 350 |
354 // Enable syncing browser data to a Google Account. | 351 // Enable syncing browser data to a Google Account. |
355 const char kEnableSync[] = "enable-sync"; | 352 const char kEnableSync[] = "enable-sync"; |
356 | 353 |
357 // Enable syncing browser autofill. | 354 // Enable syncing browser autofill. |
358 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 355 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
359 | 356 |
360 // Enable syncing browser bookmarks. | 357 // Enable syncing browser bookmarks. |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1072 | 1069 |
1073 // ----------------------------------------------------------------------------- | 1070 // ----------------------------------------------------------------------------- |
1074 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1071 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1075 // | 1072 // |
1076 // You were going to just dump your switches here, weren't you? Instead, | 1073 // You were going to just dump your switches here, weren't you? Instead, |
1077 // please put them in alphabetical order above, or in order inside the | 1074 // please put them in alphabetical order above, or in order inside the |
1078 // appropriate ifdef at the bottom. The order should match the header. | 1075 // appropriate ifdef at the bottom. The order should match the header. |
1079 // ----------------------------------------------------------------------------- | 1076 // ----------------------------------------------------------------------------- |
1080 | 1077 |
1081 } // namespace switches | 1078 } // namespace switches |
OLD | NEW |