summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_metrics_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_metrics_module.h')
-rw-r--r--chrome/browser/extensions/extension_metrics_module.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/extensions/extension_metrics_module.h b/chrome/browser/extensions/extension_metrics_module.h
index c2ffdd2..81e12be 100644
--- a/chrome/browser/extensions/extension_metrics_module.h
+++ b/chrome/browser/extensions/extension_metrics_module.h
@@ -12,7 +12,7 @@
class MetricsRecordUserActionFunction : public SyncExtensionFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordUserAction")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordUserAction")
};
class MetricsHistogramHelperFunction : public SyncExtensionFunction {
@@ -24,42 +24,42 @@ class MetricsHistogramHelperFunction : public SyncExtensionFunction {
class MetricsRecordValueFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordValue")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordValue")
};
class MetricsRecordPercentageFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordPercentage")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordPercentage")
};
class MetricsRecordCountFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordCount")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordCount")
};
class MetricsRecordSmallCountFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordSmallCount")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordSmallCount")
};
class MetricsRecordMediumCountFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordMediumCount")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordMediumCount")
};
class MetricsRecordTimeFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordTime")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordTime")
};
class MetricsRecordMediumTimeFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordMediumTime")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordMediumTime")
};
class MetricsRecordLongTimeFunction : public MetricsHistogramHelperFunction {
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("metrics.recordLongTime")
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.metrics.recordLongTime")
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_METRICS_MODULE_H__