| 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_enumerator.h" | |
| 9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 10 #include "base/md5.h" | 9 #include "base/md5.h" |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/path_service.h" | 11 #include "base/path_service.h" |
| 13 #include "base/string_util.h" | 12 #include "base/string_util.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" |
| 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" | 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" |
| 16 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" | 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebImageDecoder.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebImageDecoder.h" |
| 18 | 17 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 LOG(INFO) << test_info->name() << | 114 LOG(INFO) << test_info->name() << |
| 116 " not running because test data wasn't found."; | 115 " not running because test data wasn't found."; |
| 117 data_dir_.clear(); | 116 data_dir_.clear(); |
| 118 return; | 117 return; |
| 119 } | 118 } |
| 120 } | 119 } |
| 121 | 120 |
| 122 std::vector<base::FilePath> ImageDecoderTest::GetImageFiles() const { | 121 std::vector<base::FilePath> ImageDecoderTest::GetImageFiles() const { |
| 123 std::string pattern = "*." + format_; | 122 std::string pattern = "*." + format_; |
| 124 | 123 |
| 125 base::FileEnumerator enumerator(data_dir_, | 124 file_util::FileEnumerator enumerator(data_dir_, |
| 126 false, | 125 false, |
| 127 base::FileEnumerator::FILES); | 126 file_util::FileEnumerator::FILES); |
| 128 | 127 |
| 129 std::vector<base::FilePath> image_files; | 128 std::vector<base::FilePath> image_files; |
| 130 base::FilePath next_file_name; | 129 base::FilePath next_file_name; |
| 131 while (!(next_file_name = enumerator.Next()).empty()) { | 130 while (!(next_file_name = enumerator.Next()).empty()) { |
| 132 base::FilePath base_name = next_file_name.BaseName(); | 131 base::FilePath base_name = next_file_name.BaseName(); |
| 133 #if defined(OS_WIN) | 132 #if defined(OS_WIN) |
| 134 std::string base_name_ascii = WideToASCII(base_name.value()); | 133 std::string base_name_ascii = WideToASCII(base_name.value()); |
| 135 #else | 134 #else |
| 136 std::string base_name_ascii = base_name.value(); | 135 std::string base_name_ascii = base_name.value(); |
| 137 #endif | 136 #endif |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 // 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 |
| 218 // through decoder and pass it to fromData so that the closest | 217 // through decoder and pass it to fromData so that the closest |
| 219 // image dats to the size is returned. | 218 // image dats to the size is returned. |
| 220 WebKit::WebSize size(decoder->getImage(desired_frame_index).size()); | 219 WebKit::WebSize size(decoder->getImage(desired_frame_index).size()); |
| 221 const WebKit::WebImage& image = WebKit::WebImage::fromData(data, size); | 220 const WebKit::WebImage& image = WebKit::WebImage::fromData(data, size); |
| 222 SaveMD5Sum(md5_sum_path, image); | 221 SaveMD5Sum(md5_sum_path, image); |
| 223 #else | 222 #else |
| 224 VerifyImage(*decoder, image_path, md5_sum_path, desired_frame_index); | 223 VerifyImage(*decoder, image_path, md5_sum_path, desired_frame_index); |
| 225 #endif | 224 #endif |
| 226 } | 225 } |
| OLD | NEW |