| 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_CLIENT_SWITCHES_H_ |
| 6 #define COMPONENTS_QUIRKS_CLIENT_SWITCHES_H_ |
| 7 |
| 8 #include "components/quirks_client/quirks_client_export.h" |
| 9 |
| 10 namespace quirks_client { |
| 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_CLIENT_EXPORT extern const char kEnableDisplayQuirksClient[]; |
| 16 |
| 17 } // namespace switches |
| 18 } // namespace quirks_client |
| 19 |
| 20 #endif // COMPONENTS_QUIRKS_CLIENT_SWITCHES_H_ |
| OLD | NEW |