Index: chrome/test/chromedriver/stub_devtools_client.h |
diff --git a/chrome/test/chromedriver/stub_devtools_client.h b/chrome/test/chromedriver/stub_devtools_client.h |
deleted file mode 100644 |
index 306d2d787bf054deb6fc4b9bdaab27d5b26c5fe2..0000000000000000000000000000000000000000 |
--- a/chrome/test/chromedriver/stub_devtools_client.h |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CHROME_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_ |
-#define CHROME_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_ |
- |
-#include <list> |
-#include <string> |
- |
-#include "base/compiler_specific.h" |
-#include "base/memory/scoped_ptr.h" |
-#include "chrome/test/chromedriver/devtools_client.h" |
- |
-namespace base { |
-class DictionaryValue; |
-} |
- |
-class Status; |
- |
-class StubDevToolsClient : public DevToolsClient { |
- public: |
- StubDevToolsClient(); |
- virtual ~StubDevToolsClient(); |
- |
- // Overridden from DevToolsClient: |
- virtual Status ConnectIfNecessary() OVERRIDE; |
- virtual Status SendCommand(const std::string& method, |
- const base::DictionaryValue& params) OVERRIDE; |
- virtual Status SendCommandAndGetResult( |
- const std::string& method, |
- const base::DictionaryValue& params, |
- scoped_ptr<base::DictionaryValue>* result) OVERRIDE; |
- virtual void AddListener(DevToolsEventListener* listener) OVERRIDE; |
- virtual Status HandleEventsUntil( |
- const ConditionalFunc& conditional_func) OVERRIDE; |
- |
- protected: |
- std::list<DevToolsEventListener*> listeners_; |
-}; |
- |
-#endif // CHROME_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_ |