Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: content/renderer/render_widget.cc

Issue 10442102: Add infrastructure to instantiate a helper plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/render_widget.h" 5 #include "content/renderer/render_widget.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/message_loop.h" 12 #include "base/message_loop.h"
13 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
14 #include "base/stl_util.h" 14 #include "base/stl_util.h"
15 #include "base/utf_string_conversions.h" 15 #include "base/utf_string_conversions.h"
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "content/common/swapped_out_messages.h" 17 #include "content/common/swapped_out_messages.h"
18 #include "content/common/view_messages.h" 18 #include "content/common/view_messages.h"
19 #include "content/public/common/content_switches.h" 19 #include "content/public/common/content_switches.h"
20 #include "content/renderer/render_process.h" 20 #include "content/renderer/render_process.h"
21 #include "content/renderer/render_thread_impl.h" 21 #include "content/renderer/render_thread_impl.h"
22 #include "content/renderer/renderer_webkitplatformsupport_impl.h" 22 #include "content/renderer/renderer_webkitplatformsupport_impl.h"
23 #include "ipc/ipc_sync_message.h" 23 #include "ipc/ipc_sync_message.h"
24 #include "skia/ext/platform_canvas.h" 24 #include "skia/ext/platform_canvas.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHelperPlugin.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPagePopup.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPagePopup.h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h"
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRange.h" 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRange.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h"
31 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" 32 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h"
32 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" 33 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
33 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" 34 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
34 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" 35 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
35 #include "third_party/skia/include/core/SkShader.h" 36 #include "third_party/skia/include/core/SkShader.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 // static 144 // static
144 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) { 145 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) {
145 switch (render_widget->popup_type_) { 146 switch (render_widget->popup_type_) {
146 case WebKit::WebPopupTypeNone: // Nothing to create. 147 case WebKit::WebPopupTypeNone: // Nothing to create.
147 break; 148 break;
148 case WebKit::WebPopupTypeSelect: 149 case WebKit::WebPopupTypeSelect:
149 case WebKit::WebPopupTypeSuggestion: 150 case WebKit::WebPopupTypeSuggestion:
150 return WebPopupMenu::create(render_widget); 151 return WebPopupMenu::create(render_widget);
151 case WebKit::WebPopupTypePage: 152 case WebKit::WebPopupTypePage:
152 return WebPagePopup::create(render_widget); 153 return WebPagePopup::create(render_widget);
154 case WebKit::WebPopupTypeHelperPlugin:
jamesr 2012/06/22 18:46:42 how is this case different from a full-page plugin
ddorwin 2012/06/22 19:39:19 This is an off-screen page that instantiates a spe
155 return WebKit::WebHelperPlugin::create(render_widget);
153 default: 156 default:
154 NOTREACHED(); 157 NOTREACHED();
155 } 158 }
156 return NULL; 159 return NULL;
157 } 160 }
158 161
159 void RenderWidget::Init(int32 opener_id) { 162 void RenderWidget::Init(int32 opener_id) {
160 DoInit(opener_id, 163 DoInit(opener_id,
161 RenderWidget::CreateWebWidget(this), 164 RenderWidget::CreateWebWidget(this),
162 new ViewHostMsg_CreateWidget(opener_id, popup_type_, 165 new ViewHostMsg_CreateWidget(opener_id, popup_type_,
(...skipping 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 } 1761 }
1759 } 1762 }
1760 1763
1761 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { 1764 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) {
1762 return false; 1765 return false;
1763 } 1766 }
1764 1767
1765 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { 1768 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const {
1766 return false; 1769 return false;
1767 } 1770 }
OLDNEW
« content/renderer/render_view_impl.h ('K') | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698