summaryrefslogtreecommitdiffstats
path: root/chrome/common/attrition_experiments.h
blob: 5e474630495199097acf8f62b36890847ef707e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) 2011 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 CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
#define CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
#pragma once

#include "grit/chromium_strings.h"

namespace attrition_experiments {

// A list of all the IDs we use for the attrition experiments.
enum Experiment {
  kEnUs1 = IDS_TRY_TOAST_HEADING,
  kEnUs2 = IDS_TRY_TOAST_HEADING2,
  kEnUs3 = IDS_TRY_TOAST_HEADING3,
  kEnUs4 = IDS_TRY_TOAST_HEADING4,
  kSkype1 = IDS_TRY_TOAST_HEADING_SKYPE,
};

// This is used to match against locale and brands, and represents any
// locale/brand.
const wchar_t kAll[] = L"*";

// A comma-separated list of brand codes that are associated with Skype.
const wchar_t kSkype[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN";

// Constants for the "infobar plugins" experiment. These strings become
// the registry omaha |client| value. The last one is considered to be
// the control group which reflects the current behavior. Note that
// DoInfobarPluginsExperiment() relies on the prefix being PI, so if you
// change the prefix you need to fix that function.
const wchar_t kPluginNoBlockNoOOD[] =    L"PI01";
const wchar_t kPluginNoBlockDoOOD[] =    L"PI02";
const wchar_t kPluginDoBlockNoOOD[] =    L"PI04";
const wchar_t kPluginDoBlockDoOOD[] =    L"PI08";
const wchar_t kNotInPluginExperiment[] = L"PI20";

}  // namespace

#endif  // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_