Chromium Code Reviews| Index: components/quirks_client/switches.h |
| diff --git a/components/quirks_client/switches.h b/components/quirks_client/switches.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c55dd01893095cd6ad4f985b4059120b1dbe96e8 |
| --- /dev/null |
| +++ b/components/quirks_client/switches.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
|
Greg Levin
2016/01/27 21:26:09
2015
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_QUIRKS_CLIENT_SWITCHES_H_ |
| +#define COMPONENTS_QUIRKS_CLIENT_SWITCHES_H_ |
| + |
| +namespace quirks_client { |
| +namespace switches { |
| + |
| +// All switch in alphabetical order. The switches should be documented |
|
Greg Levin
2016/01/27 21:26:09
Should probably be "switches", even though there's
|
| +// alongside the definition of their values in the .cc file. |
| +extern const char kEnableDisplayQuirksClient[]; |
| + |
| +} // namespace switches |
| +} // namespace quirks_client |
| + |
| +#endif // COMPONENTS_QUIRKS_CLIENT_SWITCHES_H_ |