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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 virtual void SetIsLoading(bool is_loading) OVERRIDE; 93 virtual void SetIsLoading(bool is_loading) OVERRIDE;
94 virtual void TextInputStateChanged( 94 virtual void TextInputStateChanged(
95 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; 95 const ViewHostMsg_TextInputState_Params& params) OVERRIDE;
96 virtual void ImeCancelComposition() OVERRIDE; 96 virtual void ImeCancelComposition() OVERRIDE;
97 virtual void ImeCompositionRangeChanged( 97 virtual void ImeCompositionRangeChanged(
98 const ui::Range& range, 98 const ui::Range& range,
99 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; 99 const std::vector<gfx::Rect>& character_bounds) OVERRIDE;
100 virtual void DidUpdateBackingStore( 100 virtual void DidUpdateBackingStore(
101 const gfx::Rect& scroll_rect, 101 const gfx::Rect& scroll_rect,
102 const gfx::Vector2d& scroll_delta, 102 const gfx::Vector2d& scroll_delta,
103 const std::vector<gfx::Rect>& copy_rects) OVERRIDE; 103 const std::vector<gfx::Rect>& copy_rects,
104 const ui::LatencyInfo& latency_info) OVERRIDE;
104 virtual void RenderViewGone(base::TerminationStatus status, 105 virtual void RenderViewGone(base::TerminationStatus status,
105 int error_code) OVERRIDE; 106 int error_code) OVERRIDE;
106 virtual void Destroy() OVERRIDE; 107 virtual void Destroy() OVERRIDE;
107 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; 108 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE;
108 virtual void SelectionChanged(const string16& text, 109 virtual void SelectionChanged(const string16& text,
109 size_t offset, 110 size_t offset,
110 const ui::Range& range) OVERRIDE; 111 const ui::Range& range) OVERRIDE;
111 virtual void SelectionBoundsChanged( 112 virtual void SelectionBoundsChanged(
112 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; 113 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE;
113 virtual void ScrollOffsetChanged() OVERRIDE; 114 virtual void ScrollOffsetChanged() OVERRIDE;
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 // Used to render overscroll overlays. 275 // Used to render overscroll overlays.
275 bool overscroll_effect_enabled_; 276 bool overscroll_effect_enabled_;
276 scoped_ptr<OverscrollGlow> overscroll_effect_; 277 scoped_ptr<OverscrollGlow> overscroll_effect_;
277 278
278 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 279 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
279 }; 280 };
280 281
281 } // namespace content 282 } // namespace content
282 283
283 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 284 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698