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

Unified Diff: Source/devtools/front_end/host/InspectorFrontendHost.js

Issue 1061503002: DevTools: use recordEnumeratedHistogram instead of recordActionTaken (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/host/InspectorFrontendHost.js
diff --git a/Source/devtools/front_end/host/InspectorFrontendHost.js b/Source/devtools/front_end/host/InspectorFrontendHost.js
index 2f6bd8e1e51268717af00d1fe3fe5fe417e430c5..6863305d361b819da00263df039dbe632e9056fb 100644
--- a/Source/devtools/front_end/host/InspectorFrontendHost.js
+++ b/Source/devtools/front_end/host/InspectorFrontendHost.js
@@ -217,6 +217,13 @@ InspectorFrontendHostAPI.prototype = {
platform: function() { },
/**
+ * @param {string} actionName
+ * @param {number} actionCode
+ * @param {number} bucketSize
+ */
+ recordUMA: function(actionName, actionCode, bucketSize) { },
+
+ /**
* @param {number} actionCode
*/
recordActionTaken: function(actionCode) { },
dgozman 2015/04/03 14:23:48 Remove these.
lushnikov 2015/04/03 14:41:24 Done.
@@ -450,6 +457,16 @@ WebInspector.InspectorFrontendHostStub.prototype = {
/**
* @override
+ * @param {string} actionName
+ * @param {number} actionCode
+ * @param {number} bucketSize
+ */
+ recordUMA: function(actionName, actionCode, bucketSize)
+ {
+ },
+
+ /**
+ * @override
* @param {number} actionCode
*/
recordActionTaken: function(actionCode)
dgozman 2015/04/03 14:23:48 Remove these.
lushnikov 2015/04/03 14:41:24 Done.

Powered by Google App Engine
This is Rietveld 408576698