| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/values.h" | 5 #include "base/values.h" |
| 6 #include "chrome/test/chromedriver/status.h" | 6 #include "chrome/test/chromedriver/status.h" |
| 7 #include "chrome/test/chromedriver/stub_web_view.h" | 7 #include "chrome/test/chromedriver/stub_web_view.h" |
| 8 #include "chrome/test/chromedriver/ui_events.h" | 8 #include "chrome/test/chromedriver/ui_events.h" |
| 9 | 9 |
| 10 StubWebView::StubWebView(const std::string& id) : id_(id) {} | 10 StubWebView::StubWebView(const std::string& id) : id_(id) {} |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 return Status(kOk); | 76 return Status(kOk); |
| 77 } | 77 } |
| 78 | 78 |
| 79 JavaScriptDialogManager* StubWebView::GetJavaScriptDialogManager() { | 79 JavaScriptDialogManager* StubWebView::GetJavaScriptDialogManager() { |
| 80 return NULL; | 80 return NULL; |
| 81 } | 81 } |
| 82 | 82 |
| 83 Status StubWebView::CaptureScreenshot(std::string* screenshot) { | 83 Status StubWebView::CaptureScreenshot(std::string* screenshot) { |
| 84 return Status(kOk); | 84 return Status(kOk); |
| 85 } | 85 } |
| 86 |
| 87 Status StubWebView::GetFramePath(const std::string& frame_id, |
| 88 std::list<Frame>* frames) { |
| 89 return Status(kOk); |
| 90 } |
| OLD | NEW |