| OLD | NEW |
| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 // Loads an extension from the specified directory. | 552 // Loads an extension from the specified directory. |
| 553 const char kLoadExtension[] = "load-extension"; | 553 const char kLoadExtension[] = "load-extension"; |
| 554 | 554 |
| 555 // Loads the Media Router component extension on startup. | 555 // Loads the Media Router component extension on startup. |
| 556 const char kLoadMediaRouterComponentExtension[] = | 556 const char kLoadMediaRouterComponentExtension[] = |
| 557 "load-media-router-component-extension"; | 557 "load-media-router-component-extension"; |
| 558 | 558 |
| 559 // Makes Chrome default browser | 559 // Makes Chrome default browser |
| 560 const char kMakeDefaultBrowser[] = "make-default-browser"; | 560 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 561 | 561 |
| 562 // Used to enable Mus+ash. |
| 563 const char kMash[] = "mash"; |
| 564 |
| 562 // Forces the maximum disk space to be used by the media cache, in bytes. | 565 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 563 const char kMediaCacheSize[] = "media-cache-size"; | 566 const char kMediaCacheSize[] = "media-cache-size"; |
| 564 | 567 |
| 565 // Enables the recording of metrics reports but disables reporting. In contrast | 568 // Enables the recording of metrics reports but disables reporting. In contrast |
| 566 // to kDisableMetrics, this executes all the code that a normal client would | 569 // to kDisableMetrics, this executes all the code that a normal client would |
| 567 // use for reporting, except the report is dropped rather than sent to the | 570 // use for reporting, except the report is dropped rather than sent to the |
| 568 // server. This is useful for finding issues in the metrics code during UI and | 571 // server. This is useful for finding issues in the metrics code during UI and |
| 569 // performance tests. | 572 // performance tests. |
| 570 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 573 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
| 571 | 574 |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1168 | 1171 |
| 1169 // ----------------------------------------------------------------------------- | 1172 // ----------------------------------------------------------------------------- |
| 1170 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1173 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1171 // | 1174 // |
| 1172 // You were going to just dump your switches here, weren't you? Instead, please | 1175 // You were going to just dump your switches here, weren't you? Instead, please |
| 1173 // put them in alphabetical order above, or in order inside the appropriate | 1176 // put them in alphabetical order above, or in order inside the appropriate |
| 1174 // ifdef at the bottom. The order should match the header. | 1177 // ifdef at the bottom. The order should match the header. |
| 1175 // ----------------------------------------------------------------------------- | 1178 // ----------------------------------------------------------------------------- |
| 1176 | 1179 |
| 1177 } // namespace switches | 1180 } // namespace switches |
| OLD | NEW |