| Index: components/favicon/core/favicon_url.cc
|
| diff --git a/components/favicon/core/favicon_url.cc b/components/favicon/core/favicon_url.cc
|
| index ef48d168336479e2d88e8ed62449c1adc3177f3e..6957af6aeaade59b22de3bda387abf6eaa20c079 100644
|
| --- a/components/favicon/core/favicon_url.cc
|
| +++ b/components/favicon/core/favicon_url.cc
|
| @@ -6,16 +6,16 @@
|
|
|
| namespace favicon {
|
|
|
| -FaviconURL::FaviconURL()
|
| - : icon_type(favicon_base::INVALID_ICON) {
|
| +FaviconURL::FaviconURL() : icon_type(favicon_base::INVALID_ICON) {
|
| }
|
|
|
| FaviconURL::FaviconURL(const GURL& url,
|
| favicon_base::IconType type,
|
| const std::vector<gfx::Size>& sizes)
|
| - : icon_url(url), icon_type(type), icon_sizes(sizes) {}
|
| + : icon_url(url), icon_type(type), icon_sizes(sizes) {
|
| +}
|
|
|
| FaviconURL::~FaviconURL() {
|
| }
|
|
|
| -} // namespace favicon
|
| +} // namespace favicon
|
|
|