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

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

Issue 15682010: Support plumbing LatencyInfo through the old software path. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
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 "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.h" 8 #include "base/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/renderer_host/render_view_host_impl.h" 10 #include "content/browser/renderer_host/render_view_host_impl.h"
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 } 260 }
261 261
262 void RenderWidgetHostViewGuest::ImeCompositionRangeChanged( 262 void RenderWidgetHostViewGuest::ImeCompositionRangeChanged(
263 const ui::Range& range, 263 const ui::Range& range,
264 const std::vector<gfx::Rect>& character_bounds) { 264 const std::vector<gfx::Rect>& character_bounds) {
265 } 265 }
266 266
267 void RenderWidgetHostViewGuest::DidUpdateBackingStore( 267 void RenderWidgetHostViewGuest::DidUpdateBackingStore(
268 const gfx::Rect& scroll_rect, 268 const gfx::Rect& scroll_rect,
269 const gfx::Vector2d& scroll_delta, 269 const gfx::Vector2d& scroll_delta,
270 const std::vector<gfx::Rect>& copy_rects) { 270 const std::vector<gfx::Rect>& copy_rects,
271 const ui::LatencyInfo& latency_info) {
271 NOTREACHED(); 272 NOTREACHED();
272 } 273 }
273 274
274 void RenderWidgetHostViewGuest::SelectionBoundsChanged( 275 void RenderWidgetHostViewGuest::SelectionBoundsChanged(
275 const ViewHostMsg_SelectionBounds_Params& params) { 276 const ViewHostMsg_SelectionBounds_Params& params) {
276 platform_view_->SelectionBoundsChanged(params); 277 platform_view_->SelectionBoundsChanged(params);
277 } 278 }
278 279
279 void RenderWidgetHostViewGuest::ScrollOffsetChanged() { 280 void RenderWidgetHostViewGuest::ScrollOffsetChanged() {
280 } 281 }
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 return; 512 return;
512 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin(); 513 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin();
513 g_it != gestures->end(); 514 g_it != gestures->end();
514 ++g_it) { 515 ++g_it) {
515 ForwardGestureEventToRenderer(*g_it); 516 ForwardGestureEventToRenderer(*g_it);
516 } 517 }
517 } 518 }
518 519
519 520
520 } // namespace content 521 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698