Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: components/favicon/core/favicon_url.cc

Issue 284183004: Create favicon_url mirror in components/favicon. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/favicon/core/favicon_url.cc
diff --git a/content/public/common/favicon_url.cc b/components/favicon/core/favicon_url.cc
similarity index 56%
copy from content/public/common/favicon_url.cc
copy to components/favicon/core/favicon_url.cc
index 68ba481b531178388feef27c198073f1555dce8a..ef48d168336479e2d88e8ed62449c1adc3177f3e 100644
--- a/content/public/common/favicon_url.cc
+++ b/components/favicon/core/favicon_url.cc
@@ -1,21 +1,21 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/public/common/favicon_url.h"
+#include "components/favicon/core/favicon_url.h"
-namespace content {
+namespace favicon {
FaviconURL::FaviconURL()
- : icon_type(INVALID_ICON) {
+ : icon_type(favicon_base::INVALID_ICON) {
}
FaviconURL::FaviconURL(const GURL& url,
- IconType type,
+ favicon_base::IconType type,
const std::vector<gfx::Size>& sizes)
: icon_url(url), icon_type(type), icon_sizes(sizes) {}
FaviconURL::~FaviconURL() {
}
-} // namespace content
+} // namespace favicon
« components/favicon/core/favicon_url.h ('K') | « components/favicon/core/favicon_url.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698