| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "platform/image-encoders/skia/JPEGImageEncoder.h" | 48 #include "platform/image-encoders/skia/JPEGImageEncoder.h" |
| 49 #include "platform/image-encoders/skia/PNGImageEncoder.h" | 49 #include "platform/image-encoders/skia/PNGImageEncoder.h" |
| 50 #include "platform/image-encoders/skia/WEBPImageEncoder.h" | 50 #include "platform/image-encoders/skia/WEBPImageEncoder.h" |
| 51 #include "public/platform/Platform.h" | 51 #include "public/platform/Platform.h" |
| 52 #include "public/platform/WebExternalTextureMailbox.h" | 52 #include "public/platform/WebExternalTextureMailbox.h" |
| 53 #include "public/platform/WebGraphicsContext3D.h" | 53 #include "public/platform/WebGraphicsContext3D.h" |
| 54 #include "public/platform/WebGraphicsContext3DProvider.h" | 54 #include "public/platform/WebGraphicsContext3DProvider.h" |
| 55 #include "third_party/skia/include/core/SkPicture.h" | 55 #include "third_party/skia/include/core/SkPicture.h" |
| 56 #include "third_party/skia/include/effects/SkTableColorFilter.h" | 56 #include "third_party/skia/include/effects/SkTableColorFilter.h" |
| 57 #include "wtf/MathExtras.h" | 57 #include "wtf/MathExtras.h" |
| 58 #include "wtf/Vector.h" |
| 58 #include "wtf/text/Base64.h" | 59 #include "wtf/text/Base64.h" |
| 59 #include "wtf/text/WTFString.h" | 60 #include "wtf/text/WTFString.h" |
| 60 | 61 |
| 61 using namespace std; | 62 using namespace std; |
| 62 | 63 |
| 63 namespace blink { | 64 namespace blink { |
| 64 | 65 |
| 65 PassOwnPtr<ImageBuffer> ImageBuffer::create(PassOwnPtr<ImageBufferSurface> surfa
ce) | 66 PassOwnPtr<ImageBuffer> ImageBuffer::create(PassOwnPtr<ImageBufferSurface> surfa
ce) |
| 66 { | 67 { |
| 67 if (!surface->isValid()) | 68 if (!surface->isValid()) |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) | 422 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) |
| 422 return "data:,"; | 423 return "data:,"; |
| 423 | 424 |
| 424 Vector<char> base64Data; | 425 Vector<char> base64Data; |
| 425 base64Encode(encodedImage, base64Data); | 426 base64Encode(encodedImage, base64Data); |
| 426 | 427 |
| 427 return "data:" + mimeType + ";base64," + base64Data; | 428 return "data:" + mimeType + ";base64," + base64Data; |
| 428 } | 429 } |
| 429 | 430 |
| 430 } // namespace blink | 431 } // namespace blink |
| OLD | NEW |