Chromium Code Reviews| Index: components/variations/variations_switches.h |
| diff --git a/components/variations/variations_switches.h b/components/variations/variations_switches.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0ae5e3e519105ff02c81c5e006735ade587a167a |
| --- /dev/null |
| +++ b/components/variations/variations_switches.h |
| @@ -0,0 +1,20 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_VARIATIONS_VARIATIONS_SWITCHES_H_ |
| +#define COMPONENTS_VARIATIONS_VARIATIONS_SWITCHES_H_ |
| + |
| +namespace chrome_variations { |
|
Alexei Svitkine (slow)
2015/08/27 18:27:10
Eventually this should be "variations". Any reason
blundell
2015/08/27 18:33:02
The same reason that the other code I've moved ove
|
| +namespace switches { |
| + |
| +// Alphabetical list of switches specific to the variations component. Document |
| +// each in the .cc file. |
| + |
| +extern const char kFakeVariationsChannel[]; |
| +extern const char kVariationsServerURL[]; |
| + |
| +} // namespace switches |
| +} // namespace variations |
| + |
| +#endif // COMPONENTS_VARIATIONS_VARIATIONS_SWITCHES_H_ |