Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Side by Side Diff: Source/core/page/ImageBitmap.h

Issue 20748002: Blob creation methods for ImageBitmap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Do not pass "this" to PassRefPtr... Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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"
11 #include "core/platform/graphics/ImageBuffer.h" 11 #include "core/platform/graphics/ImageBuffer.h"
12 #include "core/platform/graphics/IntRect.h" 12 #include "core/platform/graphics/IntRect.h"
13 #include "wtf/PassRefPtr.h" 13 #include "wtf/PassRefPtr.h"
14 #include "wtf/RefCounted.h" 14 #include "wtf/RefCounted.h"
15 15
16 namespace WebCore { 16 namespace WebCore {
17 17
18 class HTMLCanvasElement; 18 class HTMLCanvasElement;
19 class HTMLVideoElement; 19 class HTMLVideoElement;
20 class ImageData; 20 class ImageData;
21 21
22 class ImageBitmap : public RefCounted<ImageBitmap>, public ScriptWrappable, publ ic ImageLoaderClient { 22 class ImageBitmap : public RefCounted<ImageBitmap>, public ScriptWrappable, publ ic ImageLoaderClient {
23 23
24 public: 24 public:
25 static PassRefPtr<ImageBitmap> create(HTMLImageElement*, const IntRect&); 25 static PassRefPtr<ImageBitmap> create(HTMLImageElement*, const IntRect&);
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 static PassRefPtr<ImageBitmap> create(Image*, const IntRect&);
30 31
31 PassRefPtr<Image> bitmapImage() const; 32 PassRefPtr<Image> bitmapImage() const;
32 PassRefPtr<HTMLImageElement> imageElement() const { return m_imageElement; } 33 PassRefPtr<HTMLImageElement> imageElement() const { return m_imageElement; }
33 34
34 IntRect bitmapRect() const { return m_bitmapRect; } 35 IntRect bitmapRect() const { return m_bitmapRect; }
35 IntPoint bitmapOffset() const { return m_bitmapOffset; } 36 IntPoint bitmapOffset() const { return m_bitmapOffset; }
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&);
50 ImageBitmap(Image*, const IntRect&);
49 51
50 // ImageLoaderClient 52 // ImageLoaderClient
51 virtual void notifyImageSourceChanged(); 53 virtual void notifyImageSourceChanged();
52 virtual bool requestsHighLiveResourceCachePriority() { return true; } 54 virtual bool requestsHighLiveResourceCachePriority() { return true; }
53 55
54 // ImageBitmaps constructed from HTMLImageElements hold a reference to the H TMLImageElement until 56 // ImageBitmaps constructed from HTMLImageElements hold a reference to the H TMLImageElement until
55 // the image source changes. 57 // the image source changes.
56 RefPtr<HTMLImageElement> m_imageElement; 58 RefPtr<HTMLImageElement> m_imageElement;
57 RefPtr<Image> m_bitmap; 59 RefPtr<Image> m_bitmap;
58 OwnPtr<ImageBuffer> m_buffer; 60 OwnPtr<ImageBuffer> m_buffer;
59 61
60 IntRect m_bitmapRect; // The rect where the underlying Image should be place d in reference to the ImageBitmap. 62 IntRect m_bitmapRect; // The rect where the underlying Image should be place d in reference to the ImageBitmap.
61 IntRect m_cropRect; 63 IntRect m_cropRect;
62 64
63 // The offset by which the desired Image is stored internally. 65 // The offset by which the desired Image is stored internally.
64 // ImageBitmaps constructed from HTMLImageElements reference the entire Imag eResource and may have a non-zero bitmap offset. 66 // ImageBitmaps constructed from HTMLImageElements reference the entire Imag eResource 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). 67 // ImageBitmaps not constructed from HTMLImageElements always pre-crop and s tore the image at (0, 0).
66 IntPoint m_bitmapOffset; 68 IntPoint m_bitmapOffset;
67 69
68 }; 70 };
69 71
70 } // namespace WebCore 72 } // namespace WebCore
71 73
72 #endif // ImageBitmap_h 74 #endif // ImageBitmap_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698