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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 354 |
355 OwnPtr<ContentLayerDelegate> m_contentLayerDelegate; | 355 OwnPtr<ContentLayerDelegate> m_contentLayerDelegate; |
356 | 356 |
357 WeakPersistent<ScrollableArea> m_scrollableArea; | 357 WeakPersistent<ScrollableArea> m_scrollableArea; |
358 GraphicsLayerDebugInfo m_debugInfo; | 358 GraphicsLayerDebugInfo m_debugInfo; |
359 int m_3dRenderingContext; | 359 int m_3dRenderingContext; |
360 | 360 |
361 OwnPtr<PaintController> m_paintController; | 361 OwnPtr<PaintController> m_paintController; |
362 | 362 |
363 IntRect m_previousInterestRect; | 363 IntRect m_previousInterestRect; |
| 364 |
| 365 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION |
364 }; | 366 }; |
365 | 367 |
366 } // namespace blink | 368 } // namespace blink |
367 | 369 |
368 #ifndef NDEBUG | 370 #ifndef NDEBUG |
369 // Outside the blink namespace for ease of invocation from gdb. | 371 // Outside the blink namespace for ease of invocation from gdb. |
370 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 372 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
371 #endif | 373 #endif |
372 | 374 |
373 #endif // GraphicsLayer_h | 375 #endif // GraphicsLayer_h |
OLD | NEW |