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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1434763002: Reland "Enable 'Browsing data volume counters on Desktop' by default." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; 225 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash";
226 226
227 // Disable hardware encoding support for Cast Streaming. 227 // Disable hardware encoding support for Cast Streaming.
228 const char kDisableCastStreamingHWEncoding[] = 228 const char kDisableCastStreamingHWEncoding[] =
229 "disable-cast-streaming-hw-encoding"; 229 "disable-cast-streaming-hw-encoding";
230 230
231 // Disables detection of child accounts. 231 // Disables detection of child accounts.
232 const char kDisableChildAccountDetection[] = 232 const char kDisableChildAccountDetection[] =
233 "disable-child-account-detection"; 233 "disable-child-account-detection";
234 234
235 // Disables data volume counters in the Clear Browsing Data dialog.
236 const char kDisableClearBrowsingDataCounters[] =
237 "disable-clear-browsing-data-counters";
238
235 // Disables the client-side phishing detection feature. Note that even if 239 // Disables the client-side phishing detection feature. Note that even if
236 // client-side phishing detection is enabled, it will only be active if the 240 // client-side phishing detection is enabled, it will only be active if the
237 // user has opted in to UMA stats and SafeBrowsing is enabled in the 241 // user has opted in to UMA stats and SafeBrowsing is enabled in the
238 // preferences. 242 // preferences.
239 const char kDisableClientSidePhishingDetection[] = 243 const char kDisableClientSidePhishingDetection[] =
240 "disable-client-side-phishing-detection"; 244 "disable-client-side-phishing-detection";
241 245
242 // Disable default component extensions with background pages - useful for 246 // Disable default component extensions with background pages - useful for
243 // performance tests where these pages may interfere with perf results. 247 // performance tests where these pages may interfere with perf results.
244 const char kDisableComponentExtensionsWithBackgroundPages[] = 248 const char kDisableComponentExtensionsWithBackgroundPages[] =
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 // Enables the benchmarking extensions. 387 // Enables the benchmarking extensions.
384 const char kEnableBenchmarking[] = "enable-benchmarking"; 388 const char kEnableBenchmarking[] = "enable-benchmarking";
385 389
386 // Enables the multi-level undo system for bookmarks. 390 // Enables the multi-level undo system for bookmarks.
387 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; 391 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
388 392
389 // Enables detection of child accounts. 393 // Enables detection of child accounts.
390 const char kEnableChildAccountDetection[] = 394 const char kEnableChildAccountDetection[] =
391 "enable-child-account-detection"; 395 "enable-child-account-detection";
392 396
393 // If true, the clear browsing data dialog will show data volume counters, 397 // Enables data volume counters in the Clear Browsing Data dialog.
394 // where available.
395 const char kEnableClearBrowsingDataCounters[] = 398 const char kEnableClearBrowsingDataCounters[] =
396 "enable-clear-browsing-data-counters"; 399 "enable-clear-browsing-data-counters";
397 400
398 // This applies only when the process type is "service". Enables the Cloud 401 // This applies only when the process type is "service". Enables the Cloud
399 // Print Proxy component within the service process. 402 // Print Proxy component within the service process.
400 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 403 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
401 404
402 // If true devtools experimental settings are enabled. 405 // If true devtools experimental settings are enabled.
403 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 406 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
404 407
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 1384
1382 // ----------------------------------------------------------------------------- 1385 // -----------------------------------------------------------------------------
1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1384 // 1387 //
1385 // You were going to just dump your switches here, weren't you? Instead, please 1388 // You were going to just dump your switches here, weren't you? Instead, please
1386 // put them in alphabetical order above, or in order inside the appropriate 1389 // put them in alphabetical order above, or in order inside the appropriate
1387 // ifdef at the bottom. The order should match the header. 1390 // ifdef at the bottom. The order should match the header.
1388 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1389 1392
1390 } // namespace switches 1393 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698