#ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_METRICS_H_
#define CHROME_COMMON_EXTENSIONS_EXTENSION_METRICS_H_
#include "chrome/common/extensions/extension_constants.h"
#include "extensions/common/manifest.h"
namespace extensions {
class Extension;
void RecordAppLaunchType(extension_misc::AppLaunchBucket bucket,
extensions::Manifest::Type app_type);
void RecordAppListSearchLaunch(const extensions::Extension* extension);
void RecordAppListMainLaunch(const extensions::Extension* extension);
void RecordWebStoreLaunch();
}
#endif