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 3 // found in the LICENSE file. 4 5 #ifndef CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 6 #define CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 7 8 #include "grit/chromium_strings.h" 9 10 namespace attrition_experiments { 11 12 // A list of all the IDs we use for the attrition experiments. 13 enum Experiment { 14 kEnUs1 = IDS_TRY_TOAST_HEADING, 15 kEnUs2 = IDS_TRY_TOAST_HEADING2, 16 kEnUs3 = IDS_TRY_TOAST_HEADING3, 17 kEnUs4 = IDS_TRY_TOAST_HEADING4, 18 kSkype1 = IDS_TRY_TOAST_HEADING_SKYPE, 19 }; 20 21 // A comma-separated list of brand codes that are associated with Skype. 22 const wchar_t kSkypeBrandCode[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN"; 23 24 } // namespace 25 26 #endif // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ 27