| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "wtf/OwnPtr.h" | 48 #include "wtf/OwnPtr.h" |
| 49 #include "wtf/PassOwnPtr.h" | 49 #include "wtf/PassOwnPtr.h" |
| 50 #include "wtf/Vector.h" | 50 #include "wtf/Vector.h" |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 class GraphicsLayerFactoryChromium; | 53 class GraphicsLayerFactoryChromium; |
| 54 class WebAnimation; | 54 class WebAnimation; |
| 55 class WebLayer; | 55 class WebLayer; |
| 56 } | 56 } |
| 57 | 57 |
| 58 namespace WebCore { | 58 namespace blink { |
| 59 | 59 |
| 60 class FloatRect; | 60 class FloatRect; |
| 61 class GraphicsContext; | 61 class GraphicsContext; |
| 62 class GraphicsLayer; | 62 class GraphicsLayer; |
| 63 class GraphicsLayerFactory; | 63 class GraphicsLayerFactory; |
| 64 class Image; | 64 class Image; |
| 65 class JSONObject; | 65 class JSONObject; |
| 66 class ScrollableArea; | 66 class ScrollableArea; |
| 67 class TextStream; | 67 class TextStream; |
| 68 | 68 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 | 356 |
| 357 Vector<LinkHighlightClient*> m_linkHighlights; | 357 Vector<LinkHighlightClient*> m_linkHighlights; |
| 358 | 358 |
| 359 OwnPtr<OpaqueRectTrackingContentLayerDelegate> m_opaqueRectTrackingContentLa
yerDelegate; | 359 OwnPtr<OpaqueRectTrackingContentLayerDelegate> m_opaqueRectTrackingContentLa
yerDelegate; |
| 360 | 360 |
| 361 ScrollableArea* m_scrollableArea; | 361 ScrollableArea* m_scrollableArea; |
| 362 GraphicsLayerDebugInfo m_debugInfo; | 362 GraphicsLayerDebugInfo m_debugInfo; |
| 363 int m_3dRenderingContext; | 363 int m_3dRenderingContext; |
| 364 }; | 364 }; |
| 365 | 365 |
| 366 } // namespace WebCore | 366 } // namespace blink |
| 367 | 367 |
| 368 #ifndef NDEBUG | 368 #ifndef NDEBUG |
| 369 // Outside the WebCore namespace for ease of invocation from gdb. | 369 // Outside the WebCore namespace for ease of invocation from gdb. |
| 370 void PLATFORM_EXPORT showGraphicsLayerTree(const WebCore::GraphicsLayer*); | 370 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
| 371 #endif | 371 #endif |
| 372 | 372 |
| 373 #endif // GraphicsLayer_h | 373 #endif // GraphicsLayer_h |
| OLD | NEW |