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

Side by Side Diff: content/renderer/gpu/render_widget_compositor.h

Issue 348093004: Make cc output surface creation async (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android compile fixes Created 6 years, 2 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 virtual void setTopControlsContentOffset(float); 128 virtual void setTopControlsContentOffset(float);
129 129
130 // cc::LayerTreeHostClient implementation. 130 // cc::LayerTreeHostClient implementation.
131 virtual void WillBeginMainFrame(int frame_id) OVERRIDE; 131 virtual void WillBeginMainFrame(int frame_id) OVERRIDE;
132 virtual void DidBeginMainFrame() OVERRIDE; 132 virtual void DidBeginMainFrame() OVERRIDE;
133 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE; 133 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE;
134 virtual void Layout() OVERRIDE; 134 virtual void Layout() OVERRIDE;
135 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, 135 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
136 float page_scale, 136 float page_scale,
137 float top_controls_delta) OVERRIDE; 137 float top_controls_delta) OVERRIDE;
138 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) 138 virtual void RequestNewOutputSurface(bool fallback) OVERRIDE;
139 OVERRIDE;
140 virtual void DidInitializeOutputSurface() OVERRIDE; 139 virtual void DidInitializeOutputSurface() OVERRIDE;
141 virtual void WillCommit() OVERRIDE; 140 virtual void WillCommit() OVERRIDE;
142 virtual void DidCommit() OVERRIDE; 141 virtual void DidCommit() OVERRIDE;
143 virtual void DidCommitAndDrawFrame() OVERRIDE; 142 virtual void DidCommitAndDrawFrame() OVERRIDE;
144 virtual void DidCompleteSwapBuffers() OVERRIDE; 143 virtual void DidCompleteSwapBuffers() OVERRIDE;
145 virtual void RateLimitSharedMainThreadContext() OVERRIDE; 144 virtual void RateLimitSharedMainThreadContext() OVERRIDE;
146 145
147 // cc::LayerTreeHostSingleThreadClient implementation. 146 // cc::LayerTreeHostSingleThreadClient implementation.
148 virtual void ScheduleAnimation() OVERRIDE; 147 virtual void ScheduleAnimation() OVERRIDE;
149 virtual void DidPostSwapBuffers() OVERRIDE; 148 virtual void DidPostSwapBuffers() OVERRIDE;
(...skipping 10 matching lines...) Expand all
160 159
161 bool send_v8_idle_notification_after_commit_; 160 bool send_v8_idle_notification_after_commit_;
162 base::TimeTicks begin_main_frame_time_; 161 base::TimeTicks begin_main_frame_time_;
163 // The time interval between BeginMainFrame calls, provided by the scheduler. 162 // The time interval between BeginMainFrame calls, provided by the scheduler.
164 base::TimeDelta begin_main_frame_interval_; 163 base::TimeDelta begin_main_frame_interval_;
165 }; 164 };
166 165
167 } // namespace content 166 } // namespace content
168 167
169 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 168 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698