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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_embedder_helper.cc

Issue 11360106: Browser Plugin: Implement AutoSize (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reupload Created 8 years, 1 month 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/browser/browser_plugin/browser_plugin_embedder_helper.h" 5 #include "content/browser/browser_plugin/browser_plugin_embedder_helper.h"
6 6
7 #include "content/browser/browser_plugin/browser_plugin_embedder.h" 7 #include "content/browser/browser_plugin/browser_plugin_embedder.h"
8 #include "content/browser/renderer_host/render_view_host_impl.h" 8 #include "content/browser/renderer_host/render_view_host_impl.h"
9 #include "content/common/browser_plugin_messages.h" 9 #include "content/common/browser_plugin_messages.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed, 46 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed,
47 OnPluginDestroyed); 47 OnPluginDestroyed);
48 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Go, OnGo) 48 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Go, OnGo)
49 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Stop, OnStop) 49 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Stop, OnStop)
50 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Reload, OnReload) 50 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Reload, OnReload)
51 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_TerminateGuest, OnTerminateGuest) 51 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_TerminateGuest, OnTerminateGuest)
52 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetVisibility, 52 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetVisibility,
53 OnSetGuestVisibility) 53 OnSetGuestVisibility)
54 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_DragStatusUpdate, 54 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_DragStatusUpdate,
55 OnDragStatusUpdate) 55 OnDragStatusUpdate)
56 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetAutoSize,
lazyboy 2012/11/06 22:22:35 nit: can fit in one line?
Fady Samuel 2012/11/06 23:52:34 Done.
57 OnSetAutoSize)
56 IPC_MESSAGE_UNHANDLED(handled = false) 58 IPC_MESSAGE_UNHANDLED(handled = false)
57 IPC_END_MESSAGE_MAP() 59 IPC_END_MESSAGE_MAP()
58 return handled; 60 return handled;
59 } 61 }
60 62
61 void BrowserPluginEmbedderHelper::OnResizeGuest( 63 void BrowserPluginEmbedderHelper::OnResizeGuest(
62 int instance_id, 64 int instance_id,
63 const BrowserPluginHostMsg_ResizeGuest_Params& params) { 65 const BrowserPluginHostMsg_ResizeGuest_Params& params) {
64 embedder_->ResizeGuest(render_view_host(), instance_id, params); 66 embedder_->ResizeGuest(render_view_host(), instance_id, params);
65 } 67 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 void BrowserPluginEmbedderHelper::OnDragStatusUpdate( 165 void BrowserPluginEmbedderHelper::OnDragStatusUpdate(
164 int instance_id, 166 int instance_id,
165 WebKit::WebDragStatus drag_status, 167 WebKit::WebDragStatus drag_status,
166 const WebDropData& drop_data, 168 const WebDropData& drop_data,
167 WebKit::WebDragOperationsMask drag_mask, 169 WebKit::WebDragOperationsMask drag_mask,
168 const gfx::Point& location) { 170 const gfx::Point& location) {
169 embedder_->DragStatusUpdate(instance_id, drag_status, drop_data, drag_mask, 171 embedder_->DragStatusUpdate(instance_id, drag_status, drop_data, drag_mask,
170 location); 172 location);
171 } 173 }
172 174
175 void BrowserPluginEmbedderHelper::OnSetAutoSize(
176 int instance_id,
177 const BrowserPluginHostMsg_AutoSize_Params& auto_size_params,
178 const BrowserPluginHostMsg_ResizeGuest_Params& resize_guest_params) {
179 embedder_->SetAutoSize(instance_id, auto_size_params, resize_guest_params);
180 }
181
173 } // namespace content 182 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698