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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.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_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 virtual void SetIsLoading(bool is_loading) OVERRIDE; 173 virtual void SetIsLoading(bool is_loading) OVERRIDE;
174 virtual void TextInputStateChanged( 174 virtual void TextInputStateChanged(
175 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; 175 const ViewHostMsg_TextInputState_Params& params) OVERRIDE;
176 virtual void ImeCancelComposition() OVERRIDE; 176 virtual void ImeCancelComposition() OVERRIDE;
177 virtual void ImeCompositionRangeChanged( 177 virtual void ImeCompositionRangeChanged(
178 const ui::Range& range, 178 const ui::Range& range,
179 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; 179 const std::vector<gfx::Rect>& character_bounds) OVERRIDE;
180 virtual void DidUpdateBackingStore( 180 virtual void DidUpdateBackingStore(
181 const gfx::Rect& scroll_rect, 181 const gfx::Rect& scroll_rect,
182 const gfx::Vector2d& scroll_delta, 182 const gfx::Vector2d& scroll_delta,
183 const std::vector<gfx::Rect>& copy_rects) OVERRIDE; 183 const std::vector<gfx::Rect>& copy_rects,
184 const ui::LatencyInfo& latency_info) OVERRIDE;
184 virtual void RenderViewGone(base::TerminationStatus status, 185 virtual void RenderViewGone(base::TerminationStatus status,
185 int error_code) OVERRIDE; 186 int error_code) OVERRIDE;
186 virtual void Destroy() OVERRIDE; 187 virtual void Destroy() OVERRIDE;
187 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; 188 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE;
188 virtual void SelectionChanged(const string16& text, 189 virtual void SelectionChanged(const string16& text,
189 size_t offset, 190 size_t offset,
190 const ui::Range& range) OVERRIDE; 191 const ui::Range& range) OVERRIDE;
191 virtual void SelectionBoundsChanged( 192 virtual void SelectionBoundsChanged(
192 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; 193 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE;
193 virtual void ScrollOffsetChanged() OVERRIDE; 194 virtual void ScrollOffsetChanged() OVERRIDE;
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 675
675 // Subscriber that listens to frame presentation events. 676 // Subscriber that listens to frame presentation events.
676 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; 677 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_;
677 678
678 // YUV readback pipeline. 679 // YUV readback pipeline.
679 scoped_ptr<content::ReadbackYUVInterface> 680 scoped_ptr<content::ReadbackYUVInterface>
680 yuv_readback_pipeline_; 681 yuv_readback_pipeline_;
681 682
682 TouchEditingClient* touch_editing_client_; 683 TouchEditingClient* touch_editing_client_;
683 684
685 ui::LatencyInfo software_latency_info_;
686
684 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 687 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
685 }; 688 };
686 689
687 } // namespace content 690 } // namespace content
688 691
689 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 692 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698