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

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, 5 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 // static 151 // static
151 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) { 152 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) {
152 switch (render_widget->popup_type_) { 153 switch (render_widget->popup_type_) {
153 case WebKit::WebPopupTypeNone: // Nothing to create. 154 case WebKit::WebPopupTypeNone: // Nothing to create.
154 break; 155 break;
155 case WebKit::WebPopupTypeSelect: 156 case WebKit::WebPopupTypeSelect:
156 case WebKit::WebPopupTypeSuggestion: 157 case WebKit::WebPopupTypeSuggestion:
157 return WebPopupMenu::create(render_widget); 158 return WebPopupMenu::create(render_widget);
158 case WebKit::WebPopupTypePage: 159 case WebKit::WebPopupTypePage:
159 return WebPagePopup::create(render_widget); 160 return WebPagePopup::create(render_widget);
161 case WebKit::WebPopupTypeHelperPlugin:
162 return WebKit::WebHelperPlugin::create(render_widget);
160 default: 163 default:
161 NOTREACHED(); 164 NOTREACHED();
162 } 165 }
163 return NULL; 166 return NULL;
164 } 167 }
165 168
166 void RenderWidget::Init(int32 opener_id) { 169 void RenderWidget::Init(int32 opener_id) {
167 DoInit(opener_id, 170 DoInit(opener_id,
168 RenderWidget::CreateWebWidget(this), 171 RenderWidget::CreateWebWidget(this),
169 new ViewHostMsg_CreateWidget(opener_id, popup_type_, 172 new ViewHostMsg_CreateWidget(opener_id, popup_type_,
(...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 } 1769 }
1767 } 1770 }
1768 1771
1769 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { 1772 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) {
1770 return false; 1773 return false;
1771 } 1774 }
1772 1775
1773 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { 1776 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const {
1774 return false; 1777 return false;
1775 } 1778 }
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698