OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, Google Inc. All rights reserved. |
3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 17 matching lines...) Expand all Loading... |
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
31 */ | 31 */ |
32 | 32 |
33 #include "config.h" | 33 #include "config.h" |
34 #include "core/platform/graphics/ImageBuffer.h" | 34 #include "core/platform/graphics/ImageBuffer.h" |
35 | 35 |
36 #include "GrContext.h" | 36 #include "GrContext.h" |
37 #include "ImageData.h" | 37 #include "ImageData.h" |
38 #include "MIMETypeRegistry.h" | |
39 #include "MemoryInstrumentationSkia.h" | 38 #include "MemoryInstrumentationSkia.h" |
40 #include "NativeImageSkia.h" | 39 #include "NativeImageSkia.h" |
41 #include "PlatformContextSkia.h" | 40 #include "PlatformContextSkia.h" |
42 #include "SkColorPriv.h" | 41 #include "SkColorPriv.h" |
43 #include "SkGpuDevice.h" | 42 #include "SkGpuDevice.h" |
44 #include "SkiaUtils.h" | 43 #include "SkiaUtils.h" |
| 44 #include "core/platform/MIMETypeRegistry.h" |
45 #include "core/platform/graphics/BitmapImage.h" | 45 #include "core/platform/graphics/BitmapImage.h" |
46 #include "core/platform/graphics/Extensions3D.h" | 46 #include "core/platform/graphics/Extensions3D.h" |
47 #include "core/platform/graphics/GraphicsContext.h" | 47 #include "core/platform/graphics/GraphicsContext.h" |
48 #include "core/platform/graphics/GraphicsContext3D.h" | 48 #include "core/platform/graphics/GraphicsContext3D.h" |
49 #include "core/platform/graphics/chromium/Canvas2DLayerBridge.h" | 49 #include "core/platform/graphics/chromium/Canvas2DLayerBridge.h" |
50 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" | 50 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" |
51 #include "core/platform/image-encoders/skia/JPEGImageEncoder.h" | 51 #include "core/platform/image-encoders/skia/JPEGImageEncoder.h" |
52 #include "core/platform/image-encoders/skia/PNGImageEncoder.h" | 52 #include "core/platform/image-encoders/skia/PNGImageEncoder.h" |
53 #include "core/platform/image-encoders/skia/WEBPImageEncoder.h" | 53 #include "core/platform/image-encoders/skia/WEBPImageEncoder.h" |
54 #include <public/Platform.h> | 54 #include <public/Platform.h> |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) | 438 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) |
439 return "data:,"; | 439 return "data:,"; |
440 | 440 |
441 Vector<char> base64Data; | 441 Vector<char> base64Data; |
442 base64Encode(encodedImage, base64Data); | 442 base64Encode(encodedImage, base64Data); |
443 | 443 |
444 return "data:" + mimeType + ";base64," + base64Data; | 444 return "data:" + mimeType + ";base64," + base64Data; |
445 } | 445 } |
446 | 446 |
447 } // namespace WebCore | 447 } // namespace WebCore |
OLD | NEW |