| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class SkImage; | 46 class SkImage; |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class Blob; | 50 class Blob; |
| 51 class EventTarget; | 51 class EventTarget; |
| 52 class ExceptionState; | 52 class ExceptionState; |
| 53 class ExecutionContext; | 53 class ExecutionContext; |
| 54 class ImageBitmapSource; | 54 class ImageBitmapSource; |
| 55 class ImageBitmapOptions; | 55 class ImageBitmapOptions; |
| 56 class ImageDecoder; | |
| 57 class WebTaskRunner; | 56 class WebTaskRunner; |
| 58 | 57 |
| 59 typedef HTMLImageElementOrHTMLVideoElementOrHTMLCanvasElementOrBlobOrImageDataOr
ImageBitmap | 58 typedef HTMLImageElementOrHTMLVideoElementOrHTMLCanvasElementOrBlobOrImageDataOr
ImageBitmap |
| 60 ImageBitmapSourceUnion; | 59 ImageBitmapSourceUnion; |
| 61 | 60 |
| 62 class ImageBitmapFactories final | 61 class ImageBitmapFactories final |
| 63 : public GarbageCollectedFinalized<ImageBitmapFactories>, | 62 : public GarbageCollectedFinalized<ImageBitmapFactories>, |
| 64 public Supplement<LocalDOMWindow>, | 63 public Supplement<LocalDOMWindow>, |
| 65 public Supplement<WorkerGlobalScope> { | 64 public Supplement<WorkerGlobalScope> { |
| 66 USING_GARBAGE_COLLECTED_MIXIN(ImageBitmapFactories); | 65 USING_GARBAGE_COLLECTED_MIXIN(ImageBitmapFactories); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 153 |
| 155 void addLoader(ImageBitmapLoader*); | 154 void addLoader(ImageBitmapLoader*); |
| 156 void didFinishLoading(ImageBitmapLoader*); | 155 void didFinishLoading(ImageBitmapLoader*); |
| 157 | 156 |
| 158 HeapHashSet<Member<ImageBitmapLoader>> m_pendingLoaders; | 157 HeapHashSet<Member<ImageBitmapLoader>> m_pendingLoaders; |
| 159 }; | 158 }; |
| 160 | 159 |
| 161 } // namespace blink | 160 } // namespace blink |
| 162 | 161 |
| 163 #endif // ImageBitmapFactories_h | 162 #endif // ImageBitmapFactories_h |
| OLD | NEW |