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

Side by Side Diff: cc/trees/thread_proxy.h

Issue 1287043002: cc: Setup API to release OutputSurface from LTHClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update test. Created 5 years, 3 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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 CC_TREES_THREAD_PROXY_H_ 5 #ifndef CC_TREES_THREAD_PROXY_H_
6 #define CC_TREES_THREAD_PROXY_H_ 6 #define CC_TREES_THREAD_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 bool BeginMainFrameRequested() const override; 171 bool BeginMainFrameRequested() const override;
172 void MainThreadHasStoppedFlinging() override; 172 void MainThreadHasStoppedFlinging() override;
173 void Start() override; 173 void Start() override;
174 void Stop() override; 174 void Stop() override;
175 void ForceSerializeOnSwapBuffers() override; 175 void ForceSerializeOnSwapBuffers() override;
176 bool SupportsImplScrolling() const override; 176 bool SupportsImplScrolling() const override;
177 void SetDebugState(const LayerTreeDebugState& debug_state) override; 177 void SetDebugState(const LayerTreeDebugState& debug_state) override;
178 bool MainFrameWillHappenForTesting() override; 178 bool MainFrameWillHappenForTesting() override;
179 void SetChildrenNeedBeginFrames(bool children_need_begin_frames) override; 179 void SetChildrenNeedBeginFrames(bool children_need_begin_frames) override;
180 void SetAuthoritativeVSyncInterval(const base::TimeDelta& interval) override; 180 void SetAuthoritativeVSyncInterval(const base::TimeDelta& interval) override;
181 scoped_ptr<OutputSurface> ReleaseOutputSurface() override;
181 182
182 // LayerTreeHostImplClient implementation 183 // LayerTreeHostImplClient implementation
183 void UpdateRendererCapabilitiesOnImplThread() override; 184 void UpdateRendererCapabilitiesOnImplThread() override;
184 void DidLoseOutputSurfaceOnImplThread() override; 185 void DidLoseOutputSurfaceOnImplThread() override;
185 void CommitVSyncParameters(base::TimeTicks timebase, 186 void CommitVSyncParameters(base::TimeTicks timebase,
186 base::TimeDelta interval) override; 187 base::TimeDelta interval) override;
187 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override; 188 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override;
188 void SetMaxSwapsPendingOnImplThread(int max) override; 189 void SetMaxSwapsPendingOnImplThread(int max) override;
189 void DidSwapBuffersOnImplThread() override; 190 void DidSwapBuffersOnImplThread() override;
190 void DidSwapBuffersCompleteOnImplThread() override; 191 void DidSwapBuffersCompleteOnImplThread() override;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 void InitializeImplOnImplThread(CompletionEvent* completion); 269 void InitializeImplOnImplThread(CompletionEvent* completion);
269 void SetLayerTreeHostClientReadyOnImplThread(); 270 void SetLayerTreeHostClientReadyOnImplThread();
270 void SetVisibleOnImplThread(CompletionEvent* completion, bool visible); 271 void SetVisibleOnImplThread(CompletionEvent* completion, bool visible);
271 void SetThrottleFrameProductionOnImplThread(bool throttle); 272 void SetThrottleFrameProductionOnImplThread(bool throttle);
272 void HasInitializedOutputSurfaceOnImplThread( 273 void HasInitializedOutputSurfaceOnImplThread(
273 CompletionEvent* completion, 274 CompletionEvent* completion,
274 bool* has_initialized_output_surface); 275 bool* has_initialized_output_surface);
275 void DeleteContentsTexturesOnImplThread(CompletionEvent* completion); 276 void DeleteContentsTexturesOnImplThread(CompletionEvent* completion);
276 void InitializeOutputSurfaceOnImplThread( 277 void InitializeOutputSurfaceOnImplThread(
277 scoped_ptr<OutputSurface> output_surface); 278 scoped_ptr<OutputSurface> output_surface);
279 void ReleaseOutputSurfaceOnImplThread(
280 CompletionEvent* completion,
281 scoped_ptr<OutputSurface>* output_surface);
278 void FinishGLOnImplThread(CompletionEvent* completion); 282 void FinishGLOnImplThread(CompletionEvent* completion);
279 void LayerTreeHostClosedOnImplThread(CompletionEvent* completion); 283 void LayerTreeHostClosedOnImplThread(CompletionEvent* completion);
280 DrawResult DrawSwapInternal(bool forced_draw); 284 DrawResult DrawSwapInternal(bool forced_draw);
281 void ForceSerializeOnSwapBuffersOnImplThread(CompletionEvent* completion); 285 void ForceSerializeOnSwapBuffersOnImplThread(CompletionEvent* completion);
282 void MainFrameWillHappenOnImplThreadForTesting(CompletionEvent* completion, 286 void MainFrameWillHappenOnImplThreadForTesting(CompletionEvent* completion,
283 bool* main_frame_will_happen); 287 bool* main_frame_will_happen);
284 void SetSwapUsedIncompleteTileOnImplThread(bool used_incomplete_tile); 288 void SetSwapUsedIncompleteTileOnImplThread(bool used_incomplete_tile);
285 void MainThreadHasStoppedFlingingOnImplThread(); 289 void MainThreadHasStoppedFlingingOnImplThread();
286 void SetInputThrottledUntilCommitOnImplThread(bool is_throttled); 290 void SetInputThrottledUntilCommitOnImplThread(bool is_throttled);
287 void SetDebugStateOnImplThread(const LayerTreeDebugState& debug_state); 291 void SetDebugStateOnImplThread(const LayerTreeDebugState& debug_state);
(...skipping 19 matching lines...) Expand all
307 311
308 base::WeakPtr<ThreadProxy> main_thread_weak_ptr_; 312 base::WeakPtr<ThreadProxy> main_thread_weak_ptr_;
309 base::WeakPtr<ThreadProxy> impl_thread_weak_ptr_; 313 base::WeakPtr<ThreadProxy> impl_thread_weak_ptr_;
310 314
311 DISALLOW_COPY_AND_ASSIGN(ThreadProxy); 315 DISALLOW_COPY_AND_ASSIGN(ThreadProxy);
312 }; 316 };
313 317
314 } // namespace cc 318 } // namespace cc
315 319
316 #endif // CC_TREES_THREAD_PROXY_H_ 320 #endif // CC_TREES_THREAD_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698