| 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 const char kNoStartupWindow[] = "no-startup-window"; | 579 const char kNoStartupWindow[] = "no-startup-window"; |
| 580 | 580 |
| 581 // Disables checking whether we received an acknowledgment when registering | 581 // Disables checking whether we received an acknowledgment when registering |
| 582 // a supervised user. Also disables the timeout during registration that waits | 582 // a supervised user. Also disables the timeout during registration that waits |
| 583 // for the ack. Useful when debugging against a server that does not | 583 // for the ack. Useful when debugging against a server that does not |
| 584 // support notifications. | 584 // support notifications. |
| 585 const char kNoSupervisedUserAcknowledgmentCheck[] = | 585 const char kNoSupervisedUserAcknowledgmentCheck[] = |
| 586 "no-managed-user-acknowledgment-check"; | 586 "no-managed-user-acknowledgment-check"; |
| 587 | 587 |
| 588 // Launches URL in new browser window. | 588 // Launches URL in new browser window. |
| 589 const char kOpenInNewWindow[] = "new-window"; | 589 const char kOpenInNewWindow[] = "new-window"; |
| 590 | 590 |
| 591 // The time that a new chrome process which is delegating to an already running | 591 // The time that a new chrome process which is delegating to an already running |
| 592 // chrome process started. (See ProcessSingleton for more details.) | 592 // chrome process started. (See ProcessSingleton for more details.) |
| 593 const char kOriginalProcessStartTime[] = "original-process-start-time"; | 593 const char kOriginalProcessStartTime[] = "original-process-start-time"; |
| 594 | 594 |
| 595 // Contains a list of feature names for which origin trial experiments should | 595 // Contains a list of feature names for which origin trial experiments should |
| 596 // be disabled. Names should be separated by "|" characters. | 596 // be disabled. Names should be separated by "|" characters. |
| 597 const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features"; | 597 const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features"; |
| 598 | 598 |
| 599 // Contains a list of token signatures for which origin trial experiments should | 599 // Contains a list of token signatures for which origin trial experiments should |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1137 | 1137 |
| 1138 // ----------------------------------------------------------------------------- | 1138 // ----------------------------------------------------------------------------- |
| 1139 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1139 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1140 // | 1140 // |
| 1141 // You were going to just dump your switches here, weren't you? Instead, please | 1141 // You were going to just dump your switches here, weren't you? Instead, please |
| 1142 // put them in alphabetical order above, or in order inside the appropriate | 1142 // put them in alphabetical order above, or in order inside the appropriate |
| 1143 // ifdef at the bottom. The order should match the header. | 1143 // ifdef at the bottom. The order should match the header. |
| 1144 // ----------------------------------------------------------------------------- | 1144 // ----------------------------------------------------------------------------- |
| 1145 | 1145 |
| 1146 } // namespace switches | 1146 } // namespace switches |
| OLD | NEW |