| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 void setElementId(uint64_t); | 264 void setElementId(uint64_t); |
| 265 void setCompositorMutableProperties(uint32_t); | 265 void setCompositorMutableProperties(uint32_t); |
| 266 | 266 |
| 267 static void setDrawDebugRedFillForTesting(bool); | 267 static void setDrawDebugRedFillForTesting(bool); |
| 268 ContentLayerDelegate* contentLayerDelegateForTesting() const { return m_cont
entLayerDelegate.get(); } | 268 ContentLayerDelegate* contentLayerDelegateForTesting() const { return m_cont
entLayerDelegate.get(); } |
| 269 | 269 |
| 270 String debugName() const final { return m_client->debugName(this); } | 270 String debugName() const final { return m_client->debugName(this); } |
| 271 | 271 |
| 272 protected: | 272 protected: |
| 273 String debugName(cc::Layer*) const; | 273 String debugName(cc::Layer*) const; |
| 274 bool shouldFlattenTransform() const { return m_shouldFlattenTransform; } |
| 274 | 275 |
| 275 explicit GraphicsLayer(GraphicsLayerClient*); | 276 explicit GraphicsLayer(GraphicsLayerClient*); |
| 276 // GraphicsLayerFactoryChromium that wants to create a GraphicsLayer need to
be friends. | 277 // GraphicsLayerFactoryChromium that wants to create a GraphicsLayer need to
be friends. |
| 277 friend class GraphicsLayerFactoryChromium; | 278 friend class GraphicsLayerFactoryChromium; |
| 278 // for testing | 279 // for testing |
| 279 friend class CompositedLayerMappingTest; | 280 friend class CompositedLayerMappingTest; |
| 280 friend class FakeGraphicsLayerFactory; | 281 friend class FakeGraphicsLayerFactory; |
| 282 friend class CompositedLayerMappingTest; |
| 281 | 283 |
| 282 private: | 284 private: |
| 283 // Adds a child without calling updateChildList(), so that adding children | 285 // Adds a child without calling updateChildList(), so that adding children |
| 284 // can be batched before updating. | 286 // can be batched before updating. |
| 285 void addChildInternal(GraphicsLayer*); | 287 void addChildInternal(GraphicsLayer*); |
| 286 | 288 |
| 287 #if ENABLE(ASSERT) | 289 #if ENABLE(ASSERT) |
| 288 bool hasAncestor(GraphicsLayer*) const; | 290 bool hasAncestor(GraphicsLayer*) const; |
| 289 #endif | 291 #endif |
| 290 | 292 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 }; | 382 }; |
| 381 | 383 |
| 382 } // namespace blink | 384 } // namespace blink |
| 383 | 385 |
| 384 #ifndef NDEBUG | 386 #ifndef NDEBUG |
| 385 // Outside the blink namespace for ease of invocation from gdb. | 387 // Outside the blink namespace for ease of invocation from gdb. |
| 386 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 388 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
| 387 #endif | 389 #endif |
| 388 | 390 |
| 389 #endif // GraphicsLayer_h | 391 #endif // GraphicsLayer_h |
| OLD | NEW |