| Index: third_party/WebKit/Source/devtools/front_end/devtools.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/devtools.js b/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| index 9da83256889a48f117346f0f0adecedb18bad1f6..6d268f5a20322d4db0479baf7aefcbeef60f3d13 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| @@ -534,6 +534,9 @@ InspectorFrontendHostImpl.prototype = {
|
| */
|
| recordEnumeratedHistogram: function(actionName, actionCode, bucketSize)
|
| {
|
| + // Support for M49 frontend.
|
| + if (actionName === "DevTools.DrawerShown")
|
| + return;
|
| DevToolsAPI.sendMessageToEmbedder("recordEnumeratedHistogram", [actionName, actionCode, bucketSize], null);
|
| },
|
|
|
|
|