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

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

Issue 23566018: [chromedriver] Remove Logger and just use base LOG. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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_impl.h
diff --git a/chrome/test/chromedriver/chrome/web_view_impl.h b/chrome/test/chromedriver/chrome/web_view_impl.h
index 1067ad009243ca014541e16e7526e039bb28f6ec..af348d77a1b0d88b6ea032fd93c58e637a2a4482 100644
--- a/chrome/test/chromedriver/chrome/web_view_impl.h
+++ b/chrome/test/chromedriver/chrome/web_view_impl.h
@@ -24,7 +24,6 @@ class DomTracker;
class FrameTracker;
class GeolocationOverrideManager;
struct KeyEvent;
-class Log;
struct MouseEvent;
class NavigationTracker;
class Status;
@@ -33,8 +32,7 @@ class WebViewImpl : public WebView {
public:
WebViewImpl(const std::string& id,
int build_no,
- scoped_ptr<DevToolsClient> client,
- Log* log);
+ scoped_ptr<DevToolsClient> client);
virtual ~WebViewImpl();
// Overridden from WebView:
@@ -103,7 +101,6 @@ class WebViewImpl : public WebView {
scoped_ptr<JavaScriptDialogManager> dialog_manager_;
scoped_ptr<GeolocationOverrideManager> geolocation_override_manager_;
scoped_ptr<DevToolsClient> client_;
- Log* log_;
};
namespace internal {

Powered by Google App Engine
This is Rietveld 408576698