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/variations/variations_switches.h" | |
6 | |
7 namespace chrome_variations { | |
8 namespace switches { | |
9 | |
10 // Fakes the channel of the browser for purposes of Variations filtering. This | |
11 // is to be used for testing only. Possible values are "stable", "beta", "dev" | |
12 // and "canary". Note that this only applies if the browser's reported channel | |
13 // is UNKNOWN. | |
14 const char kFakeVariationsChannel[] = "fake-variations-channel"; | |
Alexei Svitkine (slow)
2015/08/27 18:27:10
Nit: These don't need so many spaces before the =.
blundell
2015/08/27 18:33:02
Done.
| |
15 | |
16 // Specifies a custom URL for the server which reports variation data to the | |
17 // client. Specifying this switch enables the Variations service on | |
18 // unofficial builds. See variations_service.cc. | |
19 const char kVariationsServerURL[] = "variations-server-url"; | |
20 | |
21 } // namespace switches | |
22 } // namespace chrome_variations | |
OLD | NEW |