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

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

Issue 81533002: Use LatencyInfoSwapPromise to track LatencyInfo through compositor (Closed) Base URL: http://git.chromium.org/chromium/src.git@swap_promise_2
Patch Set: fix typo Created 7 years 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/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_impl.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CC_TREES_LAYER_TREE_IMPL_H_ 5 #ifndef CC_TREES_LAYER_TREE_IMPL_H_
6 #define CC_TREES_LAYER_TREE_IMPL_H_ 6 #define CC_TREES_LAYER_TREE_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/containers/hash_tables.h" 12 #include "base/containers/hash_tables.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "cc/base/scoped_ptr_vector.h" 14 #include "cc/base/scoped_ptr_vector.h"
15 #include "cc/base/swap_promise.h" 15 #include "cc/base/swap_promise.h"
16 #include "cc/layers/layer_impl.h" 16 #include "cc/layers/layer_impl.h"
17 #include "cc/resources/ui_resource_client.h" 17 #include "cc/resources/ui_resource_client.h"
18 #include "ui/events/latency_info.h"
19 18
20 #if defined(COMPILER_GCC) 19 #if defined(COMPILER_GCC)
21 namespace BASE_HASH_NAMESPACE { 20 namespace BASE_HASH_NAMESPACE {
22 template<> 21 template<>
23 struct hash<cc::LayerImpl*> { 22 struct hash<cc::LayerImpl*> {
24 size_t operator()(cc::LayerImpl* ptr) const { 23 size_t operator()(cc::LayerImpl* ptr) const {
25 return hash<size_t>()(reinterpret_cast<size_t>(ptr)); 24 return hash<size_t>()(reinterpret_cast<size_t>(ptr));
26 } 25 }
27 }; 26 };
28 } // namespace BASE_HASH_NAMESPACE 27 } // namespace BASE_HASH_NAMESPACE
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 bool ViewportSizeInvalid() const; 199 bool ViewportSizeInvalid() const;
201 void SetViewportSizeInvalid(); 200 void SetViewportSizeInvalid();
202 void ResetViewportSizeInvalid(); 201 void ResetViewportSizeInvalid();
203 202
204 // Useful for debug assertions, probably shouldn't be used for anything else. 203 // Useful for debug assertions, probably shouldn't be used for anything else.
205 Proxy* proxy() const; 204 Proxy* proxy() const;
206 205
207 void SetRootLayerScrollOffsetDelegate( 206 void SetRootLayerScrollOffsetDelegate(
208 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate); 207 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate);
209 208
210 void SetLatencyInfo(const ui::LatencyInfo& latency_info);
211 const ui::LatencyInfo& GetLatencyInfo();
212 void ClearLatencyInfo();
213
214 // Call this function when you expect there to be a swap buffer. 209 // Call this function when you expect there to be a swap buffer.
215 // See swap_promise.h for how to use SwapPromise. 210 // See swap_promise.h for how to use SwapPromise.
216 void QueueSwapPromise(scoped_ptr<SwapPromise> swap_promise); 211 void QueueSwapPromise(scoped_ptr<SwapPromise> swap_promise);
217 212
218 // Take the |new_swap_promise| and append it to |swap_promise_list_|. 213 // Take the |new_swap_promise| and append it to |swap_promise_list_|.
219 void PassSwapPromises(ScopedPtrVector<SwapPromise>* new_swap_promise); 214 void PassSwapPromises(ScopedPtrVector<SwapPromise>* new_swap_promise);
220 void FinishSwapPromises(); 215 void FinishSwapPromises(CompositorFrameMetadata* metadata);
221 void BreakSwapPromises(SwapPromise::DidNotSwapReason reason); 216 void BreakSwapPromises(SwapPromise::DidNotSwapReason reason);
222 217
223 void DidModifyTilePriorities(); 218 void DidModifyTilePriorities();
224 219
225 ResourceProvider::ResourceId ResourceIdForUIResource(UIResourceId uid) const; 220 ResourceProvider::ResourceId ResourceIdForUIResource(UIResourceId uid) const;
226 void ProcessUIResourceRequestQueue(); 221 void ProcessUIResourceRequestQueue();
227 222
228 bool IsUIResourceOpaque(UIResourceId uid) const; 223 bool IsUIResourceOpaque(UIResourceId uid) const;
229 224
230 void AddLayerWithCopyOutputRequest(LayerImpl* layer); 225 void AddLayerWithCopyOutputRequest(LayerImpl* layer);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 bool contents_textures_purged_; 268 bool contents_textures_purged_;
274 bool viewport_size_invalid_; 269 bool viewport_size_invalid_;
275 bool needs_update_draw_properties_; 270 bool needs_update_draw_properties_;
276 271
277 // In impl-side painting mode, this is true when the tree may contain 272 // In impl-side painting mode, this is true when the tree may contain
278 // structural differences relative to the active tree. 273 // structural differences relative to the active tree.
279 bool needs_full_tree_sync_; 274 bool needs_full_tree_sync_;
280 275
281 bool next_activation_forces_redraw_; 276 bool next_activation_forces_redraw_;
282 277
283 ui::LatencyInfo latency_info_;
284
285 ScopedPtrVector<SwapPromise> swap_promise_list_; 278 ScopedPtrVector<SwapPromise> swap_promise_list_;
286 279
287 UIResourceRequestQueue ui_resource_request_queue_; 280 UIResourceRequestQueue ui_resource_request_queue_;
288 281
289 private: 282 private:
290 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); 283 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl);
291 }; 284 };
292 285
293 } // namespace cc 286 } // namespace cc
294 287
295 #endif // CC_TREES_LAYER_TREE_IMPL_H_ 288 #endif // CC_TREES_LAYER_TREE_IMPL_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698