Chromium Code Reviews| Index: cc/trees/layer_tree_host.h |
| diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h |
| index b3d004ac32b9840dd9cdbe182d6661e2e4f7a75f..aa2bc7fc22080c8df0bc5994afd49b3cd9cac7d2 100644 |
| --- a/cc/trees/layer_tree_host.h |
| +++ b/cc/trees/layer_tree_host.h |
| @@ -260,6 +260,8 @@ class CC_EXPORT LayerTreeHost : NON_EXPORTED_BASE(public RateLimiterClient) { |
| bool update_total_num_cc_layers_can_use_lcd_text, |
| bool update_total_num_cc_layers_will_use_lcd_text); |
| + uint64 id() const { return reinterpret_cast<uint64>(this); } |
|
nduca
2013/06/26 05:08:46
int64 please, like layer.
also, this isn't stable
|
| + |
| protected: |
| LayerTreeHost(LayerTreeHostClient* client, const LayerTreeSettings& settings); |
| bool Initialize(scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner); |
| @@ -365,6 +367,7 @@ class CC_EXPORT LayerTreeHost : NON_EXPORTED_BASE(public RateLimiterClient) { |
| int64 total_num_cc_layers_will_use_lcd_text; |
| }; |
| LCDTextMetrics lcd_text_metrics_; |
| + uint64 instrumentation_cookie_; |
| DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| }; |