OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 void didScroll() override; | 254 void didScroll() override; |
255 | 255 |
256 // cc::LayerClient implementation. | 256 // cc::LayerClient implementation. |
257 scoped_refptr<base::trace_event::ConvertableToTraceFormat> TakeDebugInfo(cc:
:Layer*) override; | 257 scoped_refptr<base::trace_event::ConvertableToTraceFormat> TakeDebugInfo(cc:
:Layer*) override; |
258 | 258 |
259 PaintController* paintController() override; | 259 PaintController* paintController() override; |
260 | 260 |
261 // Exposed for tests. | 261 // Exposed for tests. |
262 WebLayer* contentsLayer() const { return m_contentsLayer; } | 262 WebLayer* contentsLayer() const { return m_contentsLayer; } |
263 | 263 |
| 264 void setElementId(uint64_t); |
| 265 void setCompositorMutableProperties(uint32_t); |
| 266 |
264 static void setDrawDebugRedFillForTesting(bool); | 267 static void setDrawDebugRedFillForTesting(bool); |
265 ContentLayerDelegate* contentLayerDelegateForTesting() const { return m_cont
entLayerDelegate.get(); } | 268 ContentLayerDelegate* contentLayerDelegateForTesting() const { return m_cont
entLayerDelegate.get(); } |
266 | 269 |
267 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } | 270 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } |
268 String debugName() const { return m_client->debugName(this); } | 271 String debugName() const { return m_client->debugName(this); } |
269 | 272 |
270 protected: | 273 protected: |
271 String debugName(cc::Layer*) const; | 274 String debugName(cc::Layer*) const; |
272 | 275 |
273 explicit GraphicsLayer(GraphicsLayerClient*); | 276 explicit GraphicsLayer(GraphicsLayerClient*); |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 }; | 382 }; |
380 | 383 |
381 } // namespace blink | 384 } // namespace blink |
382 | 385 |
383 #ifndef NDEBUG | 386 #ifndef NDEBUG |
384 // Outside the blink namespace for ease of invocation from gdb. | 387 // Outside the blink namespace for ease of invocation from gdb. |
385 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 388 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
386 #endif | 389 #endif |
387 | 390 |
388 #endif // GraphicsLayer_h | 391 #endif // GraphicsLayer_h |
OLD | NEW |