Chromium Code Reviews| 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 96% |
| rename from chrome/browser/manifest/manifest_icon_selector.cc |
| rename to content/browser/manifest/manifest_icon_selector.cc |
| index 3093224b1f9d0090ac6a9f044d8e4e31e053d62d..99fc3f460e0e0fa05004e6fe29e538e5a1e42969 100644 |
| --- a/chrome/browser/manifest/manifest_icon_selector.cc |
| +++ b/content/browser/manifest/manifest_icon_selector.cc |
| @@ -2,14 +2,14 @@ |
| // 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 <limits> |
| #include "base/stl_util.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "components/mime_util/mime_util.h" |
| +#include "content/public/browser/manifest_icon_selector.h" |
|
please use gerrit instead
2017/06/12 23:57:22
Should be on top.
zino
2017/06/13 16:07:45
Done.
|
| +namespace content { |
|
please use gerrit instead
2017/06/12 23:57:22
Newline below.
zino
2017/06/13 16:07:44
Done.
|
| // static |
| GURL ManifestIconSelector::FindBestMatchingIcon( |
| const std::vector<content::Manifest::Icon>& icons, |
| @@ -80,3 +80,4 @@ GURL ManifestIconSelector::FindBestMatchingIcon( |
| else |
| return GURL(); |
| } |
| +} |
|
please use gerrit instead
2017/06/12 23:57:22
Newline above.
// namespace content
zino
2017/06/13 16:07:44
Done.
|