| Index: ios/web/public/image_fetcher/webp_decoder_unittest.mm
|
| diff --git a/ios/chrome/browser/webp_transcode/webp_decoder_unittest.mm b/ios/web/public/image_fetcher/webp_decoder_unittest.mm
|
| similarity index 98%
|
| rename from ios/chrome/browser/webp_transcode/webp_decoder_unittest.mm
|
| rename to ios/web/public/image_fetcher/webp_decoder_unittest.mm
|
| index e7b67f7da910b0be592815eea126361c67a9419e..9efbe7596b9e6325b4b836ef3fd0b8f118fc8e37 100644
|
| --- a/ios/chrome/browser/webp_transcode/webp_decoder_unittest.mm
|
| +++ b/ios/web/public/image_fetcher/webp_decoder_unittest.mm
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ios/chrome/browser/webp_transcode/webp_decoder.h"
|
| +#include "ios/web/public/image_fetcher/webp_decoder.h"
|
|
|
| #import <CoreGraphics/CoreGraphics.h>
|
| #import <Foundation/Foundation.h>
|
| @@ -59,8 +59,8 @@ class WebpDecoderTest : public testing::Test {
|
| NSData* LoadImage(const base::FilePath& filename) {
|
| base::FilePath path;
|
| PathService::Get(base::DIR_SOURCE_ROOT, &path);
|
| - path = path.AppendASCII("ios/chrome/test/data/webp_transcode")
|
| - .Append(filename);
|
| + path =
|
| + path.AppendASCII("ios/web/test/data/webp_transcode").Append(filename);
|
| return
|
| [NSData dataWithContentsOfFile:base::SysUTF8ToNSString(path.value())];
|
| }
|
|
|