OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/flags_ui/flags_ui_switches.h" |
| 6 |
| 7 namespace switches { |
| 8 |
| 9 // These two flags are added around the switches about:flags adds to the |
| 10 // command line. This is useful to see which switches were added by about:flags |
| 11 // on about:version. They don't have any effect. |
| 12 const char kFlagSwitchesBegin[] = "flag-switches-begin"; |
| 13 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
| 14 |
| 15 } // namespace switches |
OLD | NEW |