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

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

Issue 14263024: Logging API in chromedriver2. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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/chrome_impl.h
===================================================================
--- chrome/test/chromedriver/chrome/chrome_impl.h (revision 194993)
+++ chrome/test/chromedriver/chrome/chrome_impl.h (working copy)
@@ -14,6 +14,7 @@
#include "chrome/test/chromedriver/chrome/chrome.h"
class AutomationExtension;
+class DevToolsEventLogger;
class DevToolsHttpClient;
class JavaScriptDialogManager;
class Status;
@@ -42,7 +43,8 @@
protected:
ChromeImpl(scoped_ptr<DevToolsHttpClient> client,
const std::string& version,
- int build_no);
+ int build_no,
+ const std::list<DevToolsEventLogger*>& devtools_event_loggers);
scoped_ptr<DevToolsHttpClient> devtools_http_client_;
@@ -56,6 +58,7 @@
// Web views in this list are in the same order as they are opened.
WebViewList web_views_;
+ std::list<DevToolsEventLogger*> devtools_event_loggers_;
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_IMPL_H_
« no previous file with comments | « chrome/test/chromedriver/chrome/chrome_desktop_impl.cc ('k') | chrome/test/chromedriver/chrome/chrome_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698