| Index: content/browser/manifest/manifest_icon_selector.cc
|
| diff --git a/chrome/browser/manifest/manifest_icon_selector.cc b/content/browser/manifest/manifest_icon_selector.cc
|
| similarity index 95%
|
| rename from chrome/browser/manifest/manifest_icon_selector.cc
|
| rename to content/browser/manifest/manifest_icon_selector.cc
|
| index 3093224b1f9d0090ac6a9f044d8e4e31e053d62d..52ba99515a7089c2c2d9c61068290787dd9d5c57 100644
|
| --- a/chrome/browser/manifest/manifest_icon_selector.cc
|
| +++ b/content/browser/manifest/manifest_icon_selector.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_selector.h"
|
| +#include "content/public/browser/manifest_icon_selector.h"
|
|
|
| #include <limits>
|
|
|
| @@ -10,6 +10,8 @@
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "components/mime_util/mime_util.h"
|
|
|
| +namespace content {
|
| +
|
| // static
|
| GURL ManifestIconSelector::FindBestMatchingIcon(
|
| const std::vector<content::Manifest::Icon>& icons,
|
| @@ -80,3 +82,5 @@ GURL ManifestIconSelector::FindBestMatchingIcon(
|
| else
|
| return GURL();
|
| }
|
| +
|
| +} // namespace content
|
|
|