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

Unified Diff: Source/web/InspectorFrontendClientImpl.cpp

Issue 104523002: [DevTools] Add power profiler and power overview in timeline panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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/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

Powered by Google App Engine
This is Rietveld 408576698