| 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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 // Loads an extension from the specified directory. | 579 // Loads an extension from the specified directory. |
| 580 const char kLoadExtension[] = "load-extension"; | 580 const char kLoadExtension[] = "load-extension"; |
| 581 | 581 |
| 582 // Loads the Media Router component extension on startup. | 582 // Loads the Media Router component extension on startup. |
| 583 const char kLoadMediaRouterComponentExtension[] = | 583 const char kLoadMediaRouterComponentExtension[] = |
| 584 "load-media-router-component-extension"; | 584 "load-media-router-component-extension"; |
| 585 | 585 |
| 586 // Makes Chrome default browser | 586 // Makes Chrome default browser |
| 587 const char kMakeDefaultBrowser[] = "make-default-browser"; | 587 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 588 | 588 |
| 589 extern const char kSecurityChip[] = "security-chip"; | |
| 590 extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only"; | |
| 591 extern const char kSecurityChipShowAll[] = "show-all"; | |
| 592 | |
| 593 extern const char kSecurityChipAnimation[] = "security-chip-animation"; | |
| 594 extern const char kSecurityChipAnimationNone[] = "none"; | |
| 595 extern const char kSecurityChipAnimationNonSecureOnly[] = | |
| 596 "animate-nonsecure-only"; | |
| 597 extern const char kSecurityChipAnimationAll[] = "animate-all"; | |
| 598 | |
| 599 // Forces the maximum disk space to be used by the media cache, in bytes. | 589 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 600 const char kMediaCacheSize[] = "media-cache-size"; | 590 const char kMediaCacheSize[] = "media-cache-size"; |
| 601 | 591 |
| 602 // Enables the recording of metrics reports but disables reporting. In contrast | 592 // Enables the recording of metrics reports but disables reporting. In contrast |
| 603 // to kDisableMetrics, this executes all the code that a normal client would | 593 // to kDisableMetrics, this executes all the code that a normal client would |
| 604 // use for reporting, except the report is dropped rather than sent to the | 594 // use for reporting, except the report is dropped rather than sent to the |
| 605 // server. This is useful for finding issues in the metrics code during UI and | 595 // server. This is useful for finding issues in the metrics code during UI and |
| 606 // performance tests. | 596 // performance tests. |
| 607 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 597 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
| 608 | 598 |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 | 1239 |
| 1250 // ----------------------------------------------------------------------------- | 1240 // ----------------------------------------------------------------------------- |
| 1251 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1241 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1252 // | 1242 // |
| 1253 // You were going to just dump your switches here, weren't you? Instead, please | 1243 // You were going to just dump your switches here, weren't you? Instead, please |
| 1254 // put them in alphabetical order above, or in order inside the appropriate | 1244 // put them in alphabetical order above, or in order inside the appropriate |
| 1255 // ifdef at the bottom. The order should match the header. | 1245 // ifdef at the bottom. The order should match the header. |
| 1256 // ----------------------------------------------------------------------------- | 1246 // ----------------------------------------------------------------------------- |
| 1257 | 1247 |
| 1258 } // namespace switches | 1248 } // namespace switches |
| OLD | NEW |