Index: chrome/test/chromedriver/chrome/devtools_client.cc |
diff --git a/chrome/test/chromedriver/chrome/devtools_client.cc b/chrome/test/chromedriver/chrome/devtools_client.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f8da7f6dc816fc5b07e8f41a7b8c0707f724ff37 |
--- /dev/null |
+++ b/chrome/test/chromedriver/chrome/devtools_client.cc |
@@ -0,0 +1,22 @@ |
+// Copyright (c) 2016 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. |
+ |
+#include "chrome/test/chromedriver/chrome/devtools_client.h" |
+ |
+#include "chrome/test/chromedriver/chrome/status.h" |
+ |
+Status DevToolsClient::SendCommandWithTimeout( |
+ const std::string& method, |
+ const base::DictionaryValue& params, |
+ const Timeout* timeout) { |
+ return SendCommand(method, params); |
+} |
+ |
+Status DevToolsClient::SendCommandAndGetResultWithTimeout( |
+ const std::string& method, |
+ const base::DictionaryValue& params, |
+ const Timeout* timeout, |
+ scoped_ptr<base::DictionaryValue>* result) { |
+ return SendCommandAndGetResult(method, params, result); |
+} |