Chromium Code Reviews| Index: chrome/test/chromedriver/chrome/chrome_impl.h |
| =================================================================== |
| --- chrome/test/chromedriver/chrome/chrome_impl.h (revision 194587) |
| +++ chrome/test/chromedriver/chrome/chrome_impl.h (working copy) |
| @@ -15,6 +15,7 @@ |
| class AutomationExtension; |
| class DevToolsHttpClient; |
| +class DevToolsEventLogger; |
|
kkania
2013/04/18 17:34:39
whoops, out of order
klm
2013/04/18 19:11:31
Done.
|
| class JavaScriptDialogManager; |
| class Status; |
| class WebView; |
| @@ -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_ |