/external/chromium_org/content/renderer/ |
sad_plugin.cc | 17 const gfx::Rect& plugin_rect, 19 const int width = plugin_rect.width(); 20 const int height = plugin_rect.height(); 26 canvas->translate(plugin_rect.x(), plugin_rect.y());
|
sad_plugin.h | 21 const gfx::Rect& plugin_rect,
|
render_widget_fullscreen_pepper.cc | 159 WebRect plugin_rect(0, 0, size_.width, size_.height); 160 widget_->plugin()->ViewChanged(plugin_rect, plugin_rect, 182 WebRect plugin_rect(0, 0, size_.width, size_.height); 183 widget_->plugin()->Paint(canvas, plugin_rect, rect);
|
/external/chromium_org/content/renderer/pepper/ |
pepper_graphics_2d_host_unittest.cc | 44 const PP_Rect& plugin_rect) { 45 renderer_view_data_.rect = plugin_rect; 78 gfx::Rect plugin_rect(PP_ToGfxRect(renderer_view_data_.rect)); 79 host_->Paint(canvas.get(), plugin_rect, 80 gfx::Rect(0, 0, plugin_rect.width(), plugin_rect.height())); 83 void DidChangeView(const PP_Rect& plugin_rect) { 84 renderer_view_data_.rect = plugin_rect; 97 PP_Rect plugin_rect = renderer_view_data_.rect; local 98 int width = plugin_rect.point.x + plugin_rect.size.width 192 PP_Rect plugin_rect = PP_MakeRectFromXYWH(0, 0, 500, 500); local 255 PP_Rect plugin_rect = PP_MakeRectFromXYWH(0, 0, 300, 300); local 319 PP_Rect plugin_rect = PP_MakeRectFromXYWH(0, 0, 300, 300); local [all...] |
pepper_graphics_2d_host.cc | 339 // The |backing_bitmap| must be clipped to the |plugin_rect| to avoid painting 343 const gfx::Rect& plugin_rect, 349 gfx::Rect invalidate_rect = plugin_rect; 371 gfx::RectToSkRect(gfx::Rect(plugin_rect.origin(), image_size)); 396 origin.set(SkIntToScalar(plugin_rect.x()), SkIntToScalar(plugin_rect.y()));
|
pepper_graphics_2d_host.h | 70 const gfx::Rect& plugin_rect,
|
pepper_plugin_instance_impl.h | 155 const gfx::Rect& plugin_rect, [all...] |
pepper_plugin_instance_impl.cc | 644 const gfx::Rect& plugin_rect, 652 PaintSadPlugin(canvas, plugin_rect, *sad_plugin_); 657 bound_graphics_2d_platform_->Paint(canvas, plugin_rect, paint_rect); [all...] |
/external/chromium_org/content/plugin/ |
webplugin_proxy.cc | 172 gfx::Rect plugin_rect = delegate_->GetRect(); local 173 plugin_rect.set_origin(gfx::Point(0, 0)); 174 plugin_rect.Intersect(rect); 175 const gfx::Rect invalidate_rect(plugin_rect);
|
/external/chromium_org/content/renderer/npapi/ |
webplugin_delegate_proxy.cc | 627 static size_t BitmapSizeForPluginRect(const gfx::Rect& plugin_rect) { 629 skia::PlatformCanvasStrideForWidth(plugin_rect.width()); 630 return stride * plugin_rect.height(); [all...] |
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin.cc | 816 PopulateResizeGuestParameters(¶ms, plugin_rect(), false); [all...] |
browser_plugin.h | 228 gfx::Rect plugin_rect() { return plugin_rect_; } function in class:content::BrowserPlugin
|