- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / chromedriver / chrome / chrome_existing_impl.h
1 // Copyright (c) 2013 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_EXISTING_IMPL_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_EXISTING_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 ChromeExistingImpl : public ChromeImpl {
17  public:
18   ChromeExistingImpl(
19       scoped_ptr<DevToolsHttpClient> client,
20       ScopedVector<DevToolsEventListener>& devtools_event_listeners);
21   virtual ~ChromeExistingImpl();
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_EXISTING_IMPL_H_