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

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

Issue 251933005: [ChromeDriver] Support mobile emulation on desktop Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert Capability to mobileEmulation; add integration- and unit-tests 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
Index: chrome/test/chromedriver/chrome/chrome_existing_impl.cc
diff --git a/chrome/test/chromedriver/chrome/chrome_existing_impl.cc b/chrome/test/chromedriver/chrome/chrome_existing_impl.cc
index b4a3387c1a19d5edd6e708e5a23390f5222aa29a..58bfd5283f5d4bb994d73b8209fcaf18b055c2e0 100644
--- a/chrome/test/chromedriver/chrome/chrome_existing_impl.cc
+++ b/chrome/test/chromedriver/chrome/chrome_existing_impl.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "chrome/test/chromedriver/chrome/chrome_existing_impl.h"
+#include "chrome/test/chromedriver/chrome/device_metrics.h"
#include "chrome/test/chromedriver/chrome/devtools_http_client.h"
#include "chrome/test/chromedriver/chrome/status.h"
#include "chrome/test/chromedriver/net/port_server.h"
@@ -12,7 +13,8 @@ ChromeExistingImpl::ChromeExistingImpl(
ScopedVector<DevToolsEventListener>& devtools_event_listeners)
: ChromeImpl(client.Pass(),
devtools_event_listeners,
- scoped_ptr<PortReservation>()) {}
+ scoped_ptr<PortReservation>(),
+ scoped_ptr<DeviceMetrics>()) {}
ChromeExistingImpl::~ChromeExistingImpl() {}

Powered by Google App Engine
This is Rietveld 408576698