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

Unified Diff: content/child/image_decoder.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/fileapi/webfilewriter_impl.cc ('k') | content/child/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/image_decoder.cc
diff --git a/content/child/image_decoder.cc b/content/child/image_decoder.cc
index c5043bec0d816893ec0f75269b129956d3e8a7bb..333395eaeb31fdee3b6a072e07cfced9e52506d9 100644
--- a/content/child/image_decoder.cc
+++ b/content/child/image_decoder.cc
@@ -10,8 +10,8 @@
#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/core/SkBitmap.h"
-using WebKit::WebData;
-using WebKit::WebImage;
+using blink::WebData;
+using blink::WebImage;
namespace content {
@@ -41,7 +41,7 @@ SkBitmap ImageDecoder::Decode(const unsigned char* data, size_t size) const {
// static
std::vector<SkBitmap> ImageDecoder::DecodeAll(
const unsigned char* data, size_t size) {
- const WebKit::WebVector<WebImage>& images = WebImage::framesFromData(
+ const blink::WebVector<WebImage>& images = WebImage::framesFromData(
WebData(reinterpret_cast<const char*>(data), size));
std::vector<SkBitmap> result;
for (size_t i = 0; i < images.size(); ++i)
« no previous file with comments | « content/child/fileapi/webfilewriter_impl.cc ('k') | content/child/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698