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

Side by Side Diff: content/test/image_decoder_test.cc

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « content/shell/renderer/webkit_test_runner.cc ('k') | content/test/layouttest_support.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "content/test/image_decoder_test.h" 5 #include "content/test/image_decoder_test.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/md5.h" 9 #include "base/md5.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/string_util.h" 12 #include "base/string_util.h"
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" 13 #include "third_party/WebKit/public/platform/WebData.h"
14 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" 14 #include "third_party/WebKit/public/platform/WebImage.h"
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" 15 #include "third_party/WebKit/public/platform/WebSize.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebImageDecoder.h" 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebImageDecoder.h"
17 17
18 using base::Time; 18 using base::Time;
19 19
20 namespace { 20 namespace {
21 21
22 const int kFirstFrameIndex = 0; 22 const int kFirstFrameIndex = 0;
23 23
24 // Determine if we should test with file specified by |path| based 24 // Determine if we should test with file specified by |path| based
25 // on |file_selection| and the |threshold| for the file size. 25 // on |file_selection| and the |threshold| for the file size.
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 // Since WebImage does not expose get data by frame, get the size 216 // Since WebImage does not expose get data by frame, get the size
217 // through decoder and pass it to fromData so that the closest 217 // through decoder and pass it to fromData so that the closest
218 // image dats to the size is returned. 218 // image dats to the size is returned.
219 WebKit::WebSize size(decoder->getImage(desired_frame_index).size()); 219 WebKit::WebSize size(decoder->getImage(desired_frame_index).size());
220 const WebKit::WebImage& image = WebKit::WebImage::fromData(data, size); 220 const WebKit::WebImage& image = WebKit::WebImage::fromData(data, size);
221 SaveMD5Sum(md5_sum_path, image); 221 SaveMD5Sum(md5_sum_path, image);
222 #else 222 #else
223 VerifyImage(*decoder, image_path, md5_sum_path, desired_frame_index); 223 VerifyImage(*decoder, image_path, md5_sum_path, desired_frame_index);
224 #endif 224 #endif
225 } 225 }
OLDNEW
« no previous file with comments | « content/shell/renderer/webkit_test_runner.cc ('k') | content/test/layouttest_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698