Index: Source/web/InspectorFrontendClientImpl.cpp |
diff --git a/Source/web/InspectorFrontendClientImpl.cpp b/Source/web/InspectorFrontendClientImpl.cpp |
old mode 100644 |
new mode 100755 |
index bd0aaef3892575f1aad31a4004898b884bc8070d..8cb78f6cb3c2ab0df681408d8b84b947243cac85 |
--- a/Source/web/InspectorFrontendClientImpl.cpp |
+++ b/Source/web/InspectorFrontendClientImpl.cpp |
@@ -137,4 +137,24 @@ bool InspectorFrontendClientImpl::isUnderTest() |
return m_client->isUnderTest(); |
} |
+void InspectorFrontendClientImpl::checkPowerProfileSupportedStatus() |
+{ |
+ m_client->checkPowerProfileSupportedStatus(); |
+} |
+ |
+void InspectorFrontendClientImpl::startPowerProfile() |
+{ |
+ m_client->startPowerProfile(); |
+} |
+ |
+void InspectorFrontendClientImpl::stopPowerProfile() |
+{ |
+ m_client->stopPowerProfile(); |
+} |
+ |
+void InspectorFrontendClientImpl::setPowerProfileResolution(unsigned resolution) |
+{ |
+ m_client->setPowerProfileResolution(resolution); |
+} |
+ |
} // namespace blink |