• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 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 #ifndef CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
6 #define CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
7 #pragma once
8 
9 #include "grit/chromium_strings.h"
10 
11 namespace attrition_experiments {
12 
13 // A list of all the IDs we use for the attrition experiments.
14 enum Experiment {
15   kEnUs1 = IDS_TRY_TOAST_HEADING,
16   kEnUs2 = IDS_TRY_TOAST_HEADING2,
17   kEnUs3 = IDS_TRY_TOAST_HEADING3,
18   kEnUs4 = IDS_TRY_TOAST_HEADING4,
19   kSkype1 = IDS_TRY_TOAST_HEADING_SKYPE,
20 };
21 
22 // This is used to match against locale and brands, and represents any
23 // locale/brand.
24 const wchar_t kAll[] = L"*";
25 
26 // A comma-separated list of brand codes that are associated with Skype.
27 const wchar_t kSkype[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN";
28 
29 }  // namespace
30 
31 #endif  // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
32