| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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 #ifndef COMPONENTS_QUIRKS_SWITCHES_H_ | |
| 6 #define COMPONENTS_QUIRKS_SWITCHES_H_ | |
| 7 | |
| 8 #include "components/quirks/quirks_export.h" | |
| 9 | |
| 10 namespace quirks { | |
| 11 namespace switches { | |
| 12 | |
| 13 // All switches in alphabetical order. The switches should be documented | |
| 14 // alongside the definition of their values in the .cc file. | |
| 15 QUIRKS_EXPORT extern const char kDisableQuirksClient[]; | |
| 16 | |
| 17 } // namespace switches | |
| 18 } // namespace quirks | |
| 19 | |
| 20 #endif // COMPONENTS_QUIRKS_SWITCHES_H_ | |
| OLD | NEW |