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

Unified Diff: chrome/test/chromedriver/chrome/stub_web_view.cc

Issue 275193003: [ChromeDriver] Expose CPU Profiling DevTools API into chromeWebDriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing web_view_stub method signatuer 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
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/stub_web_view.cc
diff --git a/chrome/test/chromedriver/chrome/stub_web_view.cc b/chrome/test/chromedriver/chrome/stub_web_view.cc
index 33393ed0aa19adb94ff0f7b9510acb30fbee94be..59fb109b7dd12e93b64cb1204c662ab81459a945 100644
--- a/chrome/test/chromedriver/chrome/stub_web_view.cc
+++ b/chrome/test/chromedriver/chrome/stub_web_view.cc
@@ -131,3 +131,11 @@ Status StubWebView::SetFileInputFiles(
Status StubWebView::TakeHeapSnapshot(scoped_ptr<base::Value>* snapshot) {
return Status(kOk);
}
+
+Status StubWebView::StartProfile() {
+ return Status(kOk);
+}
+
+Status StubWebView::EndProfile(scoped_ptr<base::Value>* profile_data) {
+ return Status(kOk);
+}
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698