| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "public/platform/WebLayerScrollClient.h" | 50 #include "public/platform/WebLayerScrollClient.h" |
| 51 #include "public/platform/WebLayerStickyPositionConstraint.h" | 51 #include "public/platform/WebLayerStickyPositionConstraint.h" |
| 52 #include "third_party/skia/include/core/SkFilterQuality.h" | 52 #include "third_party/skia/include/core/SkFilterQuality.h" |
| 53 #include "third_party/skia/include/core/SkRefCnt.h" | 53 #include "third_party/skia/include/core/SkRefCnt.h" |
| 54 #include "wtf/Vector.h" | 54 #include "wtf/Vector.h" |
| 55 #include <memory> | 55 #include <memory> |
| 56 | 56 |
| 57 namespace blink { | 57 namespace blink { |
| 58 | 58 |
| 59 class CompositorFilterOperations; | 59 class CompositorFilterOperations; |
| 60 class FloatRect; | |
| 61 class Image; | 60 class Image; |
| 62 class JSONObject; | 61 class JSONObject; |
| 63 class LinkHighlight; | 62 class LinkHighlight; |
| 64 class PaintController; | 63 class PaintController; |
| 65 struct RasterInvalidationTracking; | 64 struct RasterInvalidationTracking; |
| 66 class ScrollableArea; | 65 class ScrollableArea; |
| 67 class WebLayer; | 66 class WebLayer; |
| 68 | 67 |
| 69 typedef Vector<GraphicsLayer*, 64> GraphicsLayerVector; | 68 typedef Vector<GraphicsLayer*, 64> GraphicsLayerVector; |
| 70 | 69 |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 }; | 408 }; |
| 410 | 409 |
| 411 } // namespace blink | 410 } // namespace blink |
| 412 | 411 |
| 413 #ifndef NDEBUG | 412 #ifndef NDEBUG |
| 414 // Outside the blink namespace for ease of invocation from gdb. | 413 // Outside the blink namespace for ease of invocation from gdb. |
| 415 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 414 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
| 416 #endif | 415 #endif |
| 417 | 416 |
| 418 #endif // GraphicsLayer_h | 417 #endif // GraphicsLayer_h |
| OLD | NEW |