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

Unified Diff: chrome/test/chromedriver/chrome/web_view.h

Issue 275193003: [ChromeDriver] Expose CPU Profiling DevTools API into chromeWebDriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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: chrome/test/chromedriver/chrome/web_view.h
diff --git a/chrome/test/chromedriver/chrome/web_view.h b/chrome/test/chromedriver/chrome/web_view.h
index e30ec9518150e844f313209ca350a03f29658760..239a6b39cc929d5717e06636de64574e6d829f4f 100644
--- a/chrome/test/chromedriver/chrome/web_view.h
+++ b/chrome/test/chromedriver/chrome/web_view.h
@@ -154,6 +154,9 @@ class WebView {
// 1. A meta data element "snapshot" about how to parse data elements.
// 2. Data elements: "nodes", "edges", "strings".
virtual Status TakeHeapSnapshot(scoped_ptr<base::Value>* snapshot) = 0;
+
+ virtual Status StartProfile(scoped_ptr<base::Value>* snapshot) = 0;
klm 2014/05/10 02:21:57 Please add a descriptive comment similar to TakeHe
+ virtual Status EndProfile(scoped_ptr<base::Value>* snapshot) = 0;
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698