OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 25 matching lines...) Expand all Loading... |
36 #include "core/frame/ImageBitmap.h" | 36 #include "core/frame/ImageBitmap.h" |
37 #include "core/frame/LocalDOMWindow.h" | 37 #include "core/frame/LocalDOMWindow.h" |
38 #include "core/frame/UseCounter.h" | 38 #include "core/frame/UseCounter.h" |
39 #include "core/html/HTMLCanvasElement.h" | 39 #include "core/html/HTMLCanvasElement.h" |
40 #include "core/html/HTMLImageElement.h" | 40 #include "core/html/HTMLImageElement.h" |
41 #include "core/html/HTMLVideoElement.h" | 41 #include "core/html/HTMLVideoElement.h" |
42 #include "core/html/ImageData.h" | 42 #include "core/html/ImageData.h" |
43 #include "core/imagebitmap/ImageBitmapOptions.h" | 43 #include "core/imagebitmap/ImageBitmapOptions.h" |
44 #include "core/workers/WorkerGlobalScope.h" | 44 #include "core/workers/WorkerGlobalScope.h" |
45 #include "platform/SharedBuffer.h" | 45 #include "platform/SharedBuffer.h" |
46 #include "platform/Task.h" | |
47 #include "platform/ThreadSafeFunctional.h" | 46 #include "platform/ThreadSafeFunctional.h" |
48 #include "platform/graphics/ImageSource.h" | 47 #include "platform/graphics/ImageSource.h" |
49 #include "platform/threading/BackgroundTaskRunner.h" | 48 #include "platform/threading/BackgroundTaskRunner.h" |
50 #include "public/platform/Platform.h" | 49 #include "public/platform/Platform.h" |
51 #include "public/platform/WebThread.h" | 50 #include "public/platform/WebThread.h" |
52 #include "public/platform/WebTraceLocation.h" | 51 #include "public/platform/WebTraceLocation.h" |
53 #include <v8.h> | 52 #include <v8.h> |
54 | 53 |
55 namespace blink { | 54 namespace blink { |
56 | 55 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 m_factory->didFinishLoading(this); | 246 m_factory->didFinishLoading(this); |
248 } | 247 } |
249 | 248 |
250 DEFINE_TRACE(ImageBitmapFactories::ImageBitmapLoader) | 249 DEFINE_TRACE(ImageBitmapFactories::ImageBitmapLoader) |
251 { | 250 { |
252 visitor->trace(m_factory); | 251 visitor->trace(m_factory); |
253 visitor->trace(m_resolver); | 252 visitor->trace(m_resolver); |
254 } | 253 } |
255 | 254 |
256 } // namespace blink | 255 } // namespace blink |
OLD | NEW |