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

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

Issue 6242002: Add a command line flag to specify the minimum flash version implementing the NPP_ClearSiteData API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fall back to default version for invalid switch value Created 9 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | 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) 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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 // count, object signalling count, etc. 804 // count, object signalling count, etc.
805 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; 805 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer";
806 806
807 // Enables the recording of metrics reports but disables reporting. In 807 // Enables the recording of metrics reports but disables reporting. In
808 // contrast to kDisableMetrics, this executes all the code that a normal client 808 // contrast to kDisableMetrics, this executes all the code that a normal client
809 // would use for reporting, except the report is dropped rather than sent to 809 // would use for reporting, except the report is dropped rather than sent to
810 // the server. This is useful for finding issues in the metrics code during UI 810 // the server. This is useful for finding issues in the metrics code during UI
811 // and performance tests. 811 // and performance tests.
812 const char kMetricsRecordingOnly[] = "metrics-recording-only"; 812 const char kMetricsRecordingOnly[] = "metrics-recording-only";
813 813
814 // The minimum version of Flash that implements the NPP_ClearSiteData API.
815 const char kMinClearSiteDataFlashVersion[] = "min-clearsitedata-flash-version";
816
814 // Sets the default IP address (interface) for the stub (normally 127.0.0.1). 817 // Sets the default IP address (interface) for the stub (normally 127.0.0.1).
815 const char kNaClDebugIP[] = "nacl-debug-ip"; 818 const char kNaClDebugIP[] = "nacl-debug-ip";
816 819
817 // Sets the default port range for debugging. 820 // Sets the default port range for debugging.
818 const char kNaClDebugPorts[] = "nacl-debug-ports"; 821 const char kNaClDebugPorts[] = "nacl-debug-ports";
819 822
820 // Causes the process to run as a NativeClient broker 823 // Causes the process to run as a NativeClient broker
821 // (used for launching NaCl loader processes on 64-bit Windows). 824 // (used for launching NaCl loader processes on 64-bit Windows).
822 const char kNaClBrokerProcess[] = "nacl-broker"; 825 const char kNaClBrokerProcess[] = "nacl-broker";
823 826
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 1383
1381 // ----------------------------------------------------------------------------- 1384 // -----------------------------------------------------------------------------
1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1383 // 1386 //
1384 // You were going to just dump your switches here, weren't you? Instead, 1387 // You were going to just dump your switches here, weren't you? Instead,
1385 // please put them in alphabetical order above, or in order inside the 1388 // please put them in alphabetical order above, or in order inside the
1386 // appropriate ifdef at the bottom. The order should match the header. 1389 // appropriate ifdef at the bottom. The order should match the header.
1387 // ----------------------------------------------------------------------------- 1390 // -----------------------------------------------------------------------------
1388 1391
1389 } // namespace switches 1392 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698