| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 40 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
| 41 #include "core/platform/graphics/skia/NativeImageSkia.h" | 41 #include "core/platform/graphics/skia/NativeImageSkia.h" |
| 42 #include "core/platform/graphics/transforms/RotateTransformOperation.h" | 42 #include "core/platform/graphics/transforms/RotateTransformOperation.h" |
| 43 #include "core/platform/text/TextStream.h" | 43 #include "core/platform/text/TextStream.h" |
| 44 | 44 |
| 45 #include "wtf/CurrentTime.h" | 45 #include "wtf/CurrentTime.h" |
| 46 #include "wtf/HashMap.h" | 46 #include "wtf/HashMap.h" |
| 47 #include "wtf/HashSet.h" | 47 #include "wtf/HashSet.h" |
| 48 #include "wtf/MemoryInstrumentationHashMap.h" | 48 #include "wtf/MemoryInstrumentationHashMap.h" |
| 49 #include "wtf/MemoryInstrumentationVector.h" | 49 #include "wtf/MemoryInstrumentationVector.h" |
| 50 #include "wtf/StringExtras.h" | |
| 51 #include "wtf/text/CString.h" | |
| 52 #include "wtf/text/StringBuilder.h" | 50 #include "wtf/text/StringBuilder.h" |
| 53 #include "wtf/text/StringHash.h" | 51 #include "wtf/text/StringHash.h" |
| 54 #include "wtf/text/WTFString.h" | 52 #include "wtf/text/WTFString.h" |
| 55 | 53 |
| 56 #include <public/Platform.h> | 54 #include <public/Platform.h> |
| 57 #include <public/WebAnimation.h> | 55 #include <public/WebAnimation.h> |
| 58 #include <public/WebCompositorSupport.h> | 56 #include <public/WebCompositorSupport.h> |
| 59 #include <public/WebFilterOperation.h> | 57 #include <public/WebFilterOperation.h> |
| 60 #include <public/WebFilterOperations.h> | 58 #include <public/WebFilterOperations.h> |
| 61 #include <public/WebFloatPoint.h> | 59 #include <public/WebFloatPoint.h> |
| (...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 #ifndef NDEBUG | 1440 #ifndef NDEBUG |
| 1443 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) | 1441 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) |
| 1444 { | 1442 { |
| 1445 if (!layer) | 1443 if (!layer) |
| 1446 return; | 1444 return; |
| 1447 | 1445 |
| 1448 String output = layer->layerTreeAsText(LayerTreeAsTextDebug | LayerTreeAsTex
tIncludeVisibleRects); | 1446 String output = layer->layerTreeAsText(LayerTreeAsTextDebug | LayerTreeAsTex
tIncludeVisibleRects); |
| 1449 fprintf(stderr, "%s\n", output.utf8().data()); | 1447 fprintf(stderr, "%s\n", output.utf8().data()); |
| 1450 } | 1448 } |
| 1451 #endif | 1449 #endif |
| OLD | NEW |