OLD | NEW |
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/pepper/pepper_webplugin_impl.h" | 5 #include "content/renderer/pepper/pepper_webplugin_impl.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/debug/crash_logging.h" | 9 #include "base/debug/crash_logging.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 bool PepperWebPluginImpl::getFormValue(WebString& value) { return false; } | 163 bool PepperWebPluginImpl::getFormValue(WebString& value) { return false; } |
164 | 164 |
165 void PepperWebPluginImpl::paint(WebCanvas* canvas, const WebRect& rect) { | 165 void PepperWebPluginImpl::paint(WebCanvas* canvas, const WebRect& rect) { |
166 if (!instance_->FlashIsFullscreenOrPending()) | 166 if (!instance_->FlashIsFullscreenOrPending()) |
167 instance_->Paint(canvas, plugin_rect_, rect); | 167 instance_->Paint(canvas, plugin_rect_, rect); |
168 } | 168 } |
169 | 169 |
170 void PepperWebPluginImpl::updateGeometry( | 170 void PepperWebPluginImpl::updateGeometry( |
171 const WebRect& window_rect, | 171 const WebRect& window_rect, |
172 const WebRect& clip_rect, | 172 const WebRect& clip_rect, |
| 173 const WebRect& unobscured_rect, |
173 const WebVector<WebRect>& cut_outs_rects, | 174 const WebVector<WebRect>& cut_outs_rects, |
174 bool is_visible) { | 175 bool is_visible) { |
175 plugin_rect_ = window_rect; | 176 plugin_rect_ = window_rect; |
176 if (!instance_->FlashIsFullscreenOrPending()) { | 177 if (!instance_->FlashIsFullscreenOrPending()) { |
177 std::vector<gfx::Rect> cut_outs; | 178 std::vector<gfx::Rect> cut_outs; |
178 for (size_t i = 0; i < cut_outs_rects.size(); ++i) | 179 for (size_t i = 0; i < cut_outs_rects.size(); ++i) |
179 cut_outs.push_back(cut_outs_rects[i]); | 180 cut_outs.push_back(cut_outs_rects[i]); |
180 instance_->ViewChanged(plugin_rect_, clip_rect, cut_outs); | 181 instance_->ViewChanged(plugin_rect_, clip_rect, cut_outs); |
181 } | 182 } |
182 } | 183 } |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 | 288 |
288 bool PepperWebPluginImpl::canRotateView() { return instance_->CanRotateView(); } | 289 bool PepperWebPluginImpl::canRotateView() { return instance_->CanRotateView(); } |
289 | 290 |
290 void PepperWebPluginImpl::rotateView(RotationType type) { | 291 void PepperWebPluginImpl::rotateView(RotationType type) { |
291 instance_->RotateView(type); | 292 instance_->RotateView(type); |
292 } | 293 } |
293 | 294 |
294 bool PepperWebPluginImpl::isPlaceholder() { return false; } | 295 bool PepperWebPluginImpl::isPlaceholder() { return false; } |
295 | 296 |
296 } // namespace content | 297 } // namespace content |
OLD | NEW |