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

Side by Side Diff: cc/surfaces/surface.h

Issue 2167713002: cc: Delete SurfaceDrawStatus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Scott's comments Created 4 years, 5 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
« no previous file with comments | « cc/surfaces/display.cc ('k') | cc/surfaces/surface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SURFACES_SURFACE_H_ 5 #ifndef CC_SURFACES_SURFACE_H_
6 #define CC_SURFACES_SURFACE_H_ 6 #define CC_SURFACES_SURFACE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 // Returns the most recent frame that is eligible to be rendered. 61 // Returns the most recent frame that is eligible to be rendered.
62 // If the CompositorFrame's DelegateFrameData is null then there is 62 // If the CompositorFrame's DelegateFrameData is null then there is
63 // no eligible frame. 63 // no eligible frame.
64 const CompositorFrame& GetEligibleFrame(); 64 const CompositorFrame& GetEligibleFrame();
65 65
66 // Returns a number that increments by 1 every time a new frame is enqueued. 66 // Returns a number that increments by 1 every time a new frame is enqueued.
67 int frame_index() const { return frame_index_; } 67 int frame_index() const { return frame_index_; }
68 68
69 void TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info); 69 void TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info);
70 void RunDrawCallbacks(SurfaceDrawStatus drawn); 70 void RunDrawCallbacks();
71 71
72 base::WeakPtr<SurfaceFactory> factory() { return factory_; } 72 base::WeakPtr<SurfaceFactory> factory() { return factory_; }
73 73
74 // Add a SurfaceSequence that must be satisfied before the Surface is 74 // Add a SurfaceSequence that must be satisfied before the Surface is
75 // destroyed. 75 // destroyed.
76 void AddDestructionDependency(SurfaceSequence sequence); 76 void AddDestructionDependency(SurfaceSequence sequence);
77 77
78 // Satisfy all destruction dependencies that are contained in sequences, and 78 // Satisfy all destruction dependencies that are contained in sequences, and
79 // remove them from sequences. 79 // remove them from sequences.
80 void SatisfyDestructionDependencies( 80 void SatisfyDestructionDependencies(
(...skipping 30 matching lines...) Expand all
111 std::vector<SurfaceId> referenced_surfaces_; 111 std::vector<SurfaceId> referenced_surfaces_;
112 112
113 DrawCallback draw_callback_; 113 DrawCallback draw_callback_;
114 114
115 DISALLOW_COPY_AND_ASSIGN(Surface); 115 DISALLOW_COPY_AND_ASSIGN(Surface);
116 }; 116 };
117 117
118 } // namespace cc 118 } // namespace cc
119 119
120 #endif // CC_SURFACES_SURFACE_H_ 120 #endif // CC_SURFACES_SURFACE_H_
OLDNEW
« no previous file with comments | « cc/surfaces/display.cc ('k') | cc/surfaces/surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698