Chromium Code Reviews| Index: content/browser/manifest/manifest_icon_downloader_unittest.cc |
| diff --git a/chrome/browser/manifest/manifest_icon_downloader_unittest.cc b/content/browser/manifest/manifest_icon_downloader_unittest.cc |
| similarity index 96% |
| rename from chrome/browser/manifest/manifest_icon_downloader_unittest.cc |
| rename to content/browser/manifest/manifest_icon_downloader_unittest.cc |
| index 88350957b4ca95ac73fee21473a3d7a989b6bceb..43c818bb39cd49279b4f60b4b7eb1898e4adec4f 100644 |
| --- a/chrome/browser/manifest/manifest_icon_downloader_unittest.cc |
| +++ b/content/browser/manifest/manifest_icon_downloader_unittest.cc |
| @@ -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 "chrome/browser/manifest/manifest_icon_downloader.h" |
| +#include "content/public/browser/manifest_icon_downloader.h" |
| #include <string> |
| #include <vector> |
| @@ -11,7 +11,9 @@ |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "third_party/skia/include/core/SkBitmap.h" |
| -class ManifestIconDownloaderTest : public testing::Test { |
| +namespace content { |
| + |
| +class ManifestIconDownloaderTest : public testing::Test { |
| protected: |
| ManifestIconDownloaderTest() = default; |
| ~ManifestIconDownloaderTest() override = default; |
| @@ -140,3 +142,4 @@ TEST_F(ManifestIconDownloaderTest, NonSquareBelowMinimumIsNotPicked) { |
| ASSERT_EQ(-1, FindBitmap(15, 11, bitmaps)); |
| } |
| +} |
|
please use gerrit instead
2017/06/12 23:57:22
newline above
// namespace content
zino
2017/06/13 16:07:44
Done.
|