| Index: Source/devtools/front_end/timeline/TimelinePowerOverview.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelinePowerOverview.js b/Source/devtools/front_end/timeline/TimelinePowerOverview.js
|
| index 89f009ba56c8b62899ab5ff4970106854622a647..0078ee0fb43c15dd4ad42ff88ee849bee508b1f6 100644
|
| --- a/Source/devtools/front_end/timeline/TimelinePowerOverview.js
|
| +++ b/Source/devtools/front_end/timeline/TimelinePowerOverview.js
|
| @@ -108,13 +108,13 @@ WebInspector.TimelinePowerOverview.prototype = {
|
|
|
| timelineStarted: function()
|
| {
|
| - if (WebInspector.targetManager.mainTarget().hasCapability(WebInspector.Target.Capabilities.canProfilePower))
|
| + if (WebInspector.targetManager.mainTarget().hasCapability(WebInspector.Target.Capabilities.CanProfilePower))
|
| WebInspector.powerProfiler.startProfile();
|
| },
|
|
|
| timelineStopped: function()
|
| {
|
| - if (WebInspector.targetManager.mainTarget().hasCapability(WebInspector.Target.Capabilities.canProfilePower))
|
| + if (WebInspector.targetManager.mainTarget().hasCapability(WebInspector.Target.Capabilities.CanProfilePower))
|
| WebInspector.powerProfiler.stopProfile();
|
| },
|
|
|
|
|