Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Side by Side Diff: chrome/common/attrition_experiments.h

Issue 10821007: The new toast experiments. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 5 #ifndef CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
6 #define CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 6 #define CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
7 7
8 #include "grit/chromium_strings.h" 8 #include "grit/chromium_strings.h"
9 9
10 namespace attrition_experiments { 10 namespace attrition_experiments {
11 11
12 // A list of all the IDs we use for the attrition experiments. 12 // A list of all the IDs we use for the attrition experiments.
13 enum Experiment { 13 enum Experiment {
14 kEnUs1 = IDS_TRY_TOAST_HEADING, 14 kEnUs1 = IDS_TRY_TOAST_HEADING,
15 kEnUs2 = IDS_TRY_TOAST_HEADING2, 15 kEnUs2 = IDS_TRY_TOAST_HEADING2,
16 kEnUs3 = IDS_TRY_TOAST_HEADING3, 16 kEnUs3 = IDS_TRY_TOAST_HEADING3,
17 kEnUs4 = IDS_TRY_TOAST_HEADING4, 17 kEnUs4 = IDS_TRY_TOAST_HEADING4,
18 kSkype1 = IDS_TRY_TOAST_HEADING_SKYPE, 18 kSkype1 = IDS_TRY_TOAST_HEADING_SKYPE,
19 }; 19 };
20 20
21 // This is used to match against locale and brands, and represents any
22 // locale/brand.
23 const wchar_t kAll[] = L"*";
24
25 // A comma-separated list of brand codes that are associated with Skype. 21 // A comma-separated list of brand codes that are associated with Skype.
26 const wchar_t kSkype[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN"; 22 const wchar_t kSkypeBrandCode[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN";
27
28 // The brand code for enterprise installations.
29 const wchar_t kEnterprise[] = L"GGRV";
30
31 // The brand code for showing more compact bubbles (experimental).
32 const wchar_t kBrief[] = L"CHMA";
33 23
34 } // namespace 24 } // namespace
35 25
36 #endif // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 26 #endif // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/first_run/try_chrome_dialog_view.cc ('k') | chrome/installer/util/browser_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698