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

Unified Diff: chrome/test/chromedriver/chrome_launcher.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_launcher.h
===================================================================
--- chrome/test/chromedriver/chrome_launcher.h (revision 194993)
+++ chrome/test/chromedriver/chrome_launcher.h (working copy)
@@ -5,6 +5,7 @@
#ifndef CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_
+#include <list>
#include <string>
#include <vector>
@@ -14,6 +15,7 @@
#include "chrome/test/chromedriver/net/sync_websocket_factory.h"
class CommandLine;
+class DevToolsEventLogger;
namespace base {
class DictionaryValue;
@@ -24,11 +26,13 @@
class Status;
class URLRequestContextGetter;
-Status LaunchChrome(URLRequestContextGetter* context_getter,
- int port,
- const SyncWebSocketFactory& socket_factory,
- const Capabilities& capabilities,
- scoped_ptr<Chrome>* chrome);
+Status LaunchChrome(
+ URLRequestContextGetter* context_getter,
+ int port,
+ const SyncWebSocketFactory& socket_factory,
+ const Capabilities& capabilities,
+ const std::list<DevToolsEventLogger*>& devtools_event_loggers,
+ scoped_ptr<Chrome>* chrome);
namespace internal {
Status ProcessExtensions(const std::vector<std::string>& extensions,
« no previous file with comments | « chrome/test/chromedriver/chrome/devtools_event_logger_unittest.cc ('k') | chrome/test/chromedriver/chrome_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698