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 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_REMOTE_IMPL_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_REMOTE_IMPL_H_ 7 8 #include <string> 9 10 #include "base/compiler_specific.h" 11 #include "base/memory/scoped_ptr.h" 12 #include "chrome/test/chromedriver/chrome/chrome_impl.h" 13 14 class DevToolsHttpClient; 15 16 class ChromeRemoteImpl : public ChromeImpl { 17 public: 18 ChromeRemoteImpl( 19 scoped_ptr<DevToolsHttpClient> client, 20 ScopedVector<DevToolsEventListener>& devtools_event_listeners); 21 virtual ~ChromeRemoteImpl(); 22 23 // Overridden from Chrome. 24 virtual std::string GetOperatingSystemName() OVERRIDE; 25 26 // Overridden from ChromeImpl. 27 virtual Status QuitImpl() OVERRIDE; 28 }; 29 30 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_REMOTE_IMPL_H_ 31