OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "webkit/mocks/mock_webframe.h" | 5 #include "webkit/mocks/mock_webframe.h" |
6 | 6 |
7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" | 7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" |
8 | 8 |
9 namespace webkit_glue { | 9 namespace webkit_glue { |
10 | 10 |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 const WebInputElement&) {} | 360 const WebInputElement&) {} |
361 | 361 |
362 WebString MockWebFrame::contentAsText(size_t maxChars) const { | 362 WebString MockWebFrame::contentAsText(size_t maxChars) const { |
363 return WebString(); | 363 return WebString(); |
364 } | 364 } |
365 | 365 |
366 WebString MockWebFrame::contentAsMarkup() const { | 366 WebString MockWebFrame::contentAsMarkup() const { |
367 return WebString(); | 367 return WebString(); |
368 } | 368 } |
369 | 369 |
| 370 WebString MockWebFrame::renderTreeAsText(bool showDebugInfo) const { |
| 371 return WebString(); |
| 372 } |
| 373 |
370 WebString MockWebFrame::renderTreeAsText() const { | 374 WebString MockWebFrame::renderTreeAsText() const { |
371 return WebString(); | 375 return WebString(); |
372 } | 376 } |
373 | 377 |
374 WebString MockWebFrame::counterValueForElementById(const WebString& id) const { | 378 WebString MockWebFrame::counterValueForElementById(const WebString& id) const { |
375 return WebString(); | 379 return WebString(); |
376 } | 380 } |
377 | 381 |
378 WebString MockWebFrame::markerTextForListItem(const WebElement&) const { | 382 WebString MockWebFrame::markerTextForListItem(const WebElement&) const { |
379 return WebString(); | 383 return WebString(); |
(...skipping 13 matching lines...) Expand all Loading... |
393 int length) const { | 397 int length) const { |
394 return false; | 398 return false; |
395 } | 399 } |
396 | 400 |
397 bool MockWebFrame::pauseSVGAnimation(const WebString& animationId, | 401 bool MockWebFrame::pauseSVGAnimation(const WebString& animationId, |
398 double time, | 402 double time, |
399 const WebString& elementId) { | 403 const WebString& elementId) { |
400 return false; | 404 return false; |
401 } | 405 } |
402 | 406 |
| 407 WebString MockWebFrame::layerTreeAsText(bool showDebugInfo) const { |
| 408 return WebString(); |
| 409 } |
| 410 |
403 WebString MockWebFrame::layerTreeAsText() const { | 411 WebString MockWebFrame::layerTreeAsText() const { |
404 return WebString(); | 412 return WebString(); |
405 } | 413 } |
406 | 414 |
407 } // namespace webkit_glue | 415 } // namespace webkit_glue |
OLD | NEW |