| Index: chrome/test/chromedriver/chrome/stub_chrome.cc
|
| diff --git a/chrome/test/chromedriver/chrome/stub_chrome.cc b/chrome/test/chromedriver/chrome/stub_chrome.cc
|
| index cdf641f8f8fb2e40efd6a75f5c5df5813abb1c34..6dd163f484f250cf499374a902ef1dd0cfb1b092 100644
|
| --- a/chrome/test/chromedriver/chrome/stub_chrome.cc
|
| +++ b/chrome/test/chromedriver/chrome/stub_chrome.cc
|
| @@ -22,11 +22,13 @@ bool StubChrome::HasCrashedWebView() {
|
| return false;
|
| }
|
|
|
| -Status StubChrome::GetWebViewIdForFirstTab(std::string* web_view_id) {
|
| +Status StubChrome::GetWebViewIdForFirstTab(std::string* web_view_id,
|
| + bool w3c_compliant) {
|
| return Status(kOk);
|
| }
|
|
|
| -Status StubChrome::GetWebViewIds(std::list<std::string>* web_view_ids) {
|
| +Status StubChrome::GetWebViewIds(std::list<std::string>* web_view_ids,
|
| + bool w3c_compliant) {
|
| return Status(kOk);
|
| }
|
|
|
|
|