Index: chrome/test/chromedriver/devtools_client_impl.h |
diff --git a/chrome/test/chromedriver/devtools_client_impl.h b/chrome/test/chromedriver/devtools_client_impl.h |
deleted file mode 100644 |
index ccdf28178c61e185ea77cb7fa782c1a6ab611f11..0000000000000000000000000000000000000000 |
--- a/chrome/test/chromedriver/devtools_client_impl.h |
+++ /dev/null |
@@ -1,127 +0,0 @@ |
-// Copyright (c) 2012 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_DEVTOOLS_CLIENT_IMPL_H_ |
-#define CHROME_TEST_CHROMEDRIVER_DEVTOOLS_CLIENT_IMPL_H_ |
- |
-#include <list> |
-#include <map> |
-#include <string> |
- |
-#include "base/basictypes.h" |
-#include "base/callback.h" |
-#include "base/compiler_specific.h" |
-#include "base/memory/scoped_ptr.h" |
-#include "chrome/test/chromedriver/devtools_client.h" |
-#include "chrome/test/chromedriver/net/sync_websocket_factory.h" |
-#include "googleurl/src/gurl.h" |
- |
-namespace base { |
-class DictionaryValue; |
-} |
- |
-namespace internal { |
- |
-enum InspectorMessageType { |
- kEventMessageType = 0, |
- kCommandResponseMessageType |
-}; |
- |
-struct InspectorEvent { |
- InspectorEvent(); |
- ~InspectorEvent(); |
- std::string method; |
- scoped_ptr<base::DictionaryValue> params; |
-}; |
- |
-struct InspectorCommandResponse { |
- InspectorCommandResponse(); |
- ~InspectorCommandResponse(); |
- int id; |
- std::string error; |
- scoped_ptr<base::DictionaryValue> result; |
-}; |
- |
-} // namespace internal |
- |
-class DevToolsEventListener; |
-class Status; |
-class SyncWebSocket; |
- |
-class DevToolsClientImpl : public DevToolsClient { |
- public: |
- typedef base::Callback<Status()> FrontendCloserFunc; |
- DevToolsClientImpl(const SyncWebSocketFactory& factory, |
- const std::string& url, |
- const FrontendCloserFunc& frontend_closer_func); |
- |
- typedef base::Callback<bool( |
- const std::string&, |
- int, |
- internal::InspectorMessageType*, |
- internal::InspectorEvent*, |
- internal::InspectorCommandResponse*)> ParserFunc; |
- DevToolsClientImpl(const SyncWebSocketFactory& factory, |
- const std::string& url, |
- const FrontendCloserFunc& frontend_closer_func, |
- const ParserFunc& parser_func); |
- |
- virtual ~DevToolsClientImpl(); |
- |
- void SetParserFuncForTesting(const ParserFunc& parser_func); |
- |
- // 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; |
- |
- private: |
- Status SendCommandInternal( |
- const std::string& method, |
- const base::DictionaryValue& params, |
- scoped_ptr<base::DictionaryValue>* result); |
- Status ReceiveCommandResponse( |
- int command_id, |
- scoped_ptr<base::DictionaryValue>* result); |
- Status ReceiveNextMessage( |
- int expected_id, |
- internal::InspectorMessageType* type, |
- internal::InspectorEvent* event, |
- internal::InspectorCommandResponse* response); |
- bool HasReceivedCommandResponse(int cmd_id); |
- Status NotifyEventListeners(const std::string& method, |
- const base::DictionaryValue& params); |
- Status EnsureAllListenersNotifiedOfConnection(); |
- scoped_ptr<SyncWebSocket> socket_; |
- GURL url_; |
- FrontendCloserFunc frontend_closer_func_; |
- ParserFunc parser_func_; |
- std::list<DevToolsEventListener*> listeners_; |
- std::list<DevToolsEventListener*> listeners_for_on_connected_; |
- typedef std::map<int, base::DictionaryValue*> ResponseMap; |
- ResponseMap cmd_response_map_; |
- int next_id_; |
- |
- DISALLOW_COPY_AND_ASSIGN(DevToolsClientImpl); |
-}; |
- |
-namespace internal { |
- |
-bool ParseInspectorMessage( |
- const std::string& message, |
- int expected_id, |
- InspectorMessageType* type, |
- InspectorEvent* event, |
- InspectorCommandResponse* command_response); |
- |
-} // namespace internal |
- |
-#endif // CHROME_TEST_CHROMEDRIVER_DEVTOOLS_CLIENT_IMPL_H_ |