1 // Copyright 2014 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "chrome/test/chromedriver/chrome/chrome_remote_impl.h" 6 #include "chrome/test/chromedriver/chrome/devtools_http_client.h" 7 #include "chrome/test/chromedriver/chrome/status.h" 8 #include "chrome/test/chromedriver/net/port_server.h" 9 ChromeRemoteImpl(scoped_ptr<DevToolsHttpClient> client,ScopedVector<DevToolsEventListener> & devtools_event_listeners)10ChromeRemoteImpl::ChromeRemoteImpl( 11 scoped_ptr<DevToolsHttpClient> client, 12 ScopedVector<DevToolsEventListener>& devtools_event_listeners) 13 : ChromeImpl(client.Pass(), 14 devtools_event_listeners, 15 scoped_ptr<PortReservation>()) {} 16 ~ChromeRemoteImpl()17ChromeRemoteImpl::~ChromeRemoteImpl() {} 18 GetOperatingSystemName()19std::string ChromeRemoteImpl::GetOperatingSystemName() { 20 return std::string(); 21 } 22 QuitImpl()23Status ChromeRemoteImpl::QuitImpl() { 24 return Status(kOk); 25 } 26 27