OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ImageBitmap_h | 5 #ifndef ImageBitmap_h |
6 #define ImageBitmap_h | 6 #define ImageBitmap_h |
7 | 7 |
8 #include "bindings/v8/ScriptWrappable.h" | 8 #include "bindings/v8/ScriptWrappable.h" |
9 #include "core/html/HTMLImageElement.h" | 9 #include "core/html/HTMLImageElement.h" |
10 #include "core/platform/graphics/Image.h" | 10 #include "core/platform/graphics/Image.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 static PassRefPtr<ImageBitmap> create(HTMLVideoElement*, const IntRect&); | 26 static PassRefPtr<ImageBitmap> create(HTMLVideoElement*, const IntRect&); |
27 static PassRefPtr<ImageBitmap> create(HTMLCanvasElement*, const IntRect&); | 27 static PassRefPtr<ImageBitmap> create(HTMLCanvasElement*, const IntRect&); |
28 static PassRefPtr<ImageBitmap> create(ImageData*, const IntRect&); | 28 static PassRefPtr<ImageBitmap> create(ImageData*, const IntRect&); |
29 static PassRefPtr<ImageBitmap> create(ImageBitmap*, const IntRect&); | 29 static PassRefPtr<ImageBitmap> create(ImageBitmap*, const IntRect&); |
30 | 30 |
31 PassRefPtr<Image> bitmapImage() const; | 31 PassRefPtr<Image> bitmapImage() const; |
32 PassRefPtr<HTMLImageElement> imageElement() const { return m_imageElement; } | 32 PassRefPtr<HTMLImageElement> imageElement() const { return m_imageElement; } |
33 | 33 |
34 IntRect bitmapRect() const { return m_bitmapRect; } | 34 IntRect bitmapRect() const { return m_bitmapRect; } |
35 IntPoint bitmapOffset() const { return m_bitmapOffset; } | 35 IntPoint bitmapOffset() const { return m_bitmapOffset; } |
| 36 bool derivedFromCanvas() const { return m_derivedFromCanvas; } |
36 | 37 |
37 int width() const { return m_cropRect.width(); } | 38 int width() const { return m_cropRect.width(); } |
38 int height() const { return m_cropRect.height(); } | 39 int height() const { return m_cropRect.height(); } |
39 IntSize size() const { return m_cropRect.size(); } | 40 IntSize size() const { return m_cropRect.size(); } |
40 | 41 |
41 virtual ~ImageBitmap(); | 42 virtual ~ImageBitmap(); |
42 | 43 |
43 private: | 44 private: |
44 ImageBitmap(HTMLImageElement*, const IntRect&); | 45 ImageBitmap(HTMLImageElement*, const IntRect&); |
45 ImageBitmap(HTMLVideoElement*, const IntRect&); | 46 ImageBitmap(HTMLVideoElement*, const IntRect&); |
46 ImageBitmap(HTMLCanvasElement*, const IntRect&); | 47 ImageBitmap(HTMLCanvasElement*, const IntRect&); |
47 ImageBitmap(ImageData*, const IntRect&); | 48 ImageBitmap(ImageData*, const IntRect&); |
48 ImageBitmap(ImageBitmap*, const IntRect&); | 49 ImageBitmap(ImageBitmap*, const IntRect&); |
49 | 50 |
50 // ImageLoaderClient | 51 // ImageLoaderClient |
51 virtual void notifyImageSourceChanged(); | 52 virtual void notifyImageSourceChanged(); |
52 virtual bool requestsHighLiveResourceCachePriority() { return true; } | 53 virtual bool requestsHighLiveResourceCachePriority() { return true; } |
53 | 54 |
54 // ImageBitmaps constructed from HTMLImageElements hold a reference to the H
TMLImageElement until | 55 // ImageBitmaps constructed from HTMLImageElements hold a reference to the H
TMLImageElement until |
55 // the image source changes. | 56 // the image source changes. |
56 RefPtr<HTMLImageElement> m_imageElement; | 57 RefPtr<HTMLImageElement> m_imageElement; |
57 RefPtr<Image> m_bitmap; | 58 RefPtr<Image> m_bitmap; |
58 OwnPtr<ImageBuffer> m_buffer; | 59 OwnPtr<ImageBuffer> m_buffer; |
59 | 60 |
60 IntRect m_bitmapRect; // The rect where the underlying Image should be place
d in reference to the ImageBitmap. | 61 IntRect m_bitmapRect; // The rect where the underlying Image should be place
d in reference to the ImageBitmap. |
61 IntRect m_cropRect; | 62 IntRect m_cropRect; |
62 | 63 |
63 // The offset by which the desired Image is stored internally. | 64 // The offset by which the desired Image is stored internally. |
64 // ImageBitmaps constructed from HTMLImageElements reference the entire Cach
edImage and may have a non-zero bitmap offset. | 65 // ImageBitmaps constructed from image elements or canvases reference the en
tire CachedImage and may have a non-zero bitmap offset. |
65 // ImageBitmaps not constructed from HTMLImageElements always pre-crop and s
tore the image at (0, 0). | 66 // Otherwise, ImageBitmaps pre-crop and store the image at (0, 0). |
66 IntPoint m_bitmapOffset; | 67 IntPoint m_bitmapOffset; |
67 | 68 |
| 69 unsigned m_derivedFromCanvas : 1; |
68 }; | 70 }; |
69 | 71 |
70 } // namespace WebCore | 72 } // namespace WebCore |
71 | 73 |
72 #endif // ImageBitmap_h | 74 #endif // ImageBitmap_h |
OLD | NEW |