| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |