| Index: chrome/test/chromedriver/chrome/stub_web_view.cc
|
| diff --git a/chrome/test/chromedriver/chrome/stub_web_view.cc b/chrome/test/chromedriver/chrome/stub_web_view.cc
|
| index 43c7b471272c3467aeb776e5132974851417e4c2..6df576da45841bfafdfb5c14a9458a784248094f 100644
|
| --- a/chrome/test/chromedriver/chrome/stub_web_view.cc
|
| +++ b/chrome/test/chromedriver/chrome/stub_web_view.cc
|
| @@ -40,6 +40,18 @@ Status StubWebView::Reload(const Timeout* timeout) {
|
| return Status(kOk);
|
| }
|
|
|
| +Status StubWebView::SendCommand(const std::string& cmd,
|
| + const base::DictionaryValue& params) {
|
| + return Status(kOk);
|
| +}
|
| +
|
| +Status StubWebView::SendCommandAndGetResult(
|
| + const std::string& cmd,
|
| + const base::DictionaryValue& params,
|
| + std::unique_ptr<base::Value>* value) {
|
| + return Status(kOk);
|
| +}
|
| +
|
| Status StubWebView::TraverseHistory(int delta, const Timeout* timeout) {
|
| return Status(kOk);
|
| }
|
|
|