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 |
index 4d03e78f2e7225fef3358c4936d081403ad9c0b5..c496c0f30714b1737a08376685e261ee4661dbaa 100644 |
--- a/chrome/test/chromedriver/devtools_client_impl.h |
+++ b/chrome/test/chromedriver/devtools_client_impl.h |
@@ -92,12 +92,14 @@ class DevToolsClientImpl : public DevToolsClient { |
internal::InspectorMessageType* type, |
internal::InspectorEvent* event, |
internal::InspectorCommandResponse* response); |
- virtual Status NotifyEventListeners(const std::string& method, |
- const base::DictionaryValue& params); |
+ bool HasReceivedCommandResponse(int cmd_id); |
+ Status NotifyEventListeners(const std::string& method, |
+ const base::DictionaryValue& params); |
scoped_ptr<SyncWebSocket> socket_; |
GURL url_; |
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_; |
bool connected_; |