Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / components / variations / variations_switches.cc
blobe4b5b215444581b73e0e1abe9ad18a899658306a
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.
5 #include "components/variations/variations_switches.h"
7 namespace variations {
8 namespace switches {
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";
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";
21 } // namespace switches
22 } // namespace variations