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 // This file contains the implementation of TestWebViewDelegate, which serves | 5 // This file contains the implementation of TestWebViewDelegate, which serves |
6 // as the WebViewDelegate for the TestShellWebHost. The host is expected to | 6 // as the WebViewDelegate for the TestShellWebHost. The host is expected to |
7 // have initialized a MessageLoop before these methods are called. | 7 // have initialized a MessageLoop before these methods are called. |
8 | 8 |
9 #include "webkit/tools/test_shell/test_webview_delegate.h" | 9 #include "webkit/tools/test_shell/test_webview_delegate.h" |
10 | 10 |
11 #include "base/debug/trace_event.h" | 11 #include "base/debug/trace_event.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/process_util.h" | 14 #include "base/process_util.h" |
15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
17 #include "base/string_number_conversions.h" | 17 #include "base/string_number_conversions.h" |
18 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
19 #include "media/base/filter_collection.h" | 19 #include "media/base/filter_collection.h" |
20 #include "media/base/media_log.h" | |
21 #include "media/base/message_loop_factory_impl.h" | 20 #include "media/base/message_loop_factory_impl.h" |
22 #include "net/base/net_errors.h" | 21 #include "net/base/net_errors.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec
t.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec
t.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDeviceOrientationC
lientMock.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDeviceOrientationC
lientMock.h" |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" |
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebData.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebData.h" |
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 new media::FilterCollection()); | 618 new media::FilterCollection()); |
620 | 619 |
621 scoped_refptr<webkit_glue::VideoRendererImpl> video_renderer( | 620 scoped_refptr<webkit_glue::VideoRendererImpl> video_renderer( |
622 new webkit_glue::VideoRendererImpl(false)); | 621 new webkit_glue::VideoRendererImpl(false)); |
623 collection->AddVideoRenderer(video_renderer); | 622 collection->AddVideoRenderer(video_renderer); |
624 | 623 |
625 scoped_ptr<webkit_glue::WebMediaPlayerImpl> result( | 624 scoped_ptr<webkit_glue::WebMediaPlayerImpl> result( |
626 new webkit_glue::WebMediaPlayerImpl(client, | 625 new webkit_glue::WebMediaPlayerImpl(client, |
627 collection.release(), | 626 collection.release(), |
628 message_loop_factory.release(), | 627 message_loop_factory.release(), |
629 NULL, | 628 NULL)); |
630 new media::MediaLog())); | |
631 if (!result->Initialize(frame, false, video_renderer)) { | 629 if (!result->Initialize(frame, false, video_renderer)) { |
632 return NULL; | 630 return NULL; |
633 } | 631 } |
634 return result.release(); | 632 return result.release(); |
635 } | 633 } |
636 | 634 |
637 WebApplicationCacheHost* TestWebViewDelegate::createApplicationCacheHost( | 635 WebApplicationCacheHost* TestWebViewDelegate::createApplicationCacheHost( |
638 WebFrame* frame, WebApplicationCacheHostClient* client) { | 636 WebFrame* frame, WebApplicationCacheHostClient* client) { |
639 return SimpleAppCacheSystem::CreateApplicationCacheHost(client); | 637 return SimpleAppCacheSystem::CreateApplicationCacheHost(client); |
640 } | 638 } |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 } | 1123 } |
1126 | 1124 |
1127 void TestWebViewDelegate::set_fake_window_rect(const WebRect& rect) { | 1125 void TestWebViewDelegate::set_fake_window_rect(const WebRect& rect) { |
1128 fake_rect_ = rect; | 1126 fake_rect_ = rect; |
1129 using_fake_rect_ = true; | 1127 using_fake_rect_ = true; |
1130 } | 1128 } |
1131 | 1129 |
1132 WebRect TestWebViewDelegate::fake_window_rect() { | 1130 WebRect TestWebViewDelegate::fake_window_rect() { |
1133 return fake_rect_; | 1131 return fake_rect_; |
1134 } | 1132 } |
OLD | NEW |