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

Side by Side Diff: chrome/common/extensions/extension_constants.h

Issue 4708002: Add a histogram for tracking web store promo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback Created 10 years, 1 month 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_EXTENSIONS_EXTENSION_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 0xf7, 0x0d, 0x01, 0x01, 0x05, 0x05, 0x00 232 0xf7, 0x0d, 0x01, 0x01, 0x05, 0x05, 0x00
233 }; 233 };
234 234
235 // Don't remove items or change the order of this enum. It's used in 235 // Don't remove items or change the order of this enum. It's used in
236 // histograms and preferences. 236 // histograms and preferences.
237 enum LaunchContainer { 237 enum LaunchContainer {
238 LAUNCH_WINDOW, 238 LAUNCH_WINDOW,
239 LAUNCH_PANEL, 239 LAUNCH_PANEL,
240 LAUNCH_TAB 240 LAUNCH_TAB
241 }; 241 };
242
243 // The name of the apps promo histogram.
244 extern const char* kAppsPromoHistogram;
245
246 // The buckets used in the apps promo histogram.
247 enum AppsPromoBuckets {
Aaron Boodman 2010/11/12 19:01:02 Does this still need to be here or can it also mov
248 PROMO_LAUNCH_APP,
249 PROMO_LAUNCH_WEB_STORE,
250 PROMO_CLOSE,
251 PROMO_EXPIRE,
252 PROMO_BUCKET_BOUNDARY = PROMO_EXPIRE + 1
253 };
242 } // extension_misc 254 } // extension_misc
243 255
244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 256 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698