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

Side by Side Diff: content/browser/frame_host/render_widget_host_view_guest.cc

Issue 137783022: Revert of Add RGB565 Texture readback support in gl_helper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/bind_helpers.h" 5 #include "base/bind_helpers.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "content/browser/browser_plugin/browser_plugin_guest.h" 9 #include "content/browser/browser_plugin/browser_plugin_guest.h"
10 #include "content/browser/frame_host/render_widget_host_view_guest.h" 10 #include "content/browser/frame_host/render_widget_host_view_guest.h"
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 return; 327 return;
328 ViewHostMsg_SelectionBounds_Params guest_params(params); 328 ViewHostMsg_SelectionBounds_Params guest_params(params);
329 guest_params.anchor_rect = guest_->ToGuestRect(params.anchor_rect); 329 guest_params.anchor_rect = guest_->ToGuestRect(params.anchor_rect);
330 guest_params.focus_rect = guest_->ToGuestRect(params.focus_rect); 330 guest_params.focus_rect = guest_->ToGuestRect(params.focus_rect);
331 rwhv->SelectionBoundsChanged(guest_params); 331 rwhv->SelectionBoundsChanged(guest_params);
332 } 332 }
333 333
334 void RenderWidgetHostViewGuest::CopyFromCompositingSurface( 334 void RenderWidgetHostViewGuest::CopyFromCompositingSurface(
335 const gfx::Rect& src_subrect, 335 const gfx::Rect& src_subrect,
336 const gfx::Size& dst_size, 336 const gfx::Size& dst_size,
337 const base::Callback<void(bool, const SkBitmap&)>& callback, 337 const base::Callback<void(bool, const SkBitmap&)>& callback) {
338 bool readback_config_rgb565) {
339 CHECK(guest_); 338 CHECK(guest_);
340 guest_->CopyFromCompositingSurface(src_subrect, dst_size, callback); 339 guest_->CopyFromCompositingSurface(src_subrect, dst_size, callback);
341 } 340 }
342 341
343 void RenderWidgetHostViewGuest::SetBackground(const SkBitmap& background) { 342 void RenderWidgetHostViewGuest::SetBackground(const SkBitmap& background) {
344 platform_view_->SetBackground(background); 343 platform_view_->SetBackground(background);
345 } 344 }
346 345
347 void RenderWidgetHostViewGuest::SetHasHorizontalScrollbar( 346 void RenderWidgetHostViewGuest::SetHasHorizontalScrollbar(
348 bool has_horizontal_scrollbar) { 347 bool has_horizontal_scrollbar) {
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 return; 531 return;
533 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin(); 532 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin();
534 g_it != gestures->end(); 533 g_it != gestures->end();
535 ++g_it) { 534 ++g_it) {
536 ForwardGestureEventToRenderer(*g_it); 535 ForwardGestureEventToRenderer(*g_it);
537 } 536 }
538 } 537 }
539 538
540 539
541 } // namespace content 540 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_widget_host_view_guest.h ('k') | content/browser/renderer_host/compositor_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698