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

Unified Diff: chrome/common/favicon_url.h

Issue 11411180: move favicon download code from chrome/ into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix order Created 8 years 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
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/common/favicon_url.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/favicon_url.h
diff --git a/chrome/common/favicon_url.h b/chrome/common/favicon_url.h
deleted file mode 100644
index 4da256be85bd1d4ca25c43635ec3a87270a2079f..0000000000000000000000000000000000000000
--- a/chrome/common/favicon_url.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef CHROME_COMMON_FAVICON_URL_
-#define CHROME_COMMON_FAVICON_URL_
-
-#include "googleurl/src/gurl.h"
-
-// The favicon url from the render.
-struct FaviconURL {
- // The icon type in a page. The definition must be same as history::IconType.
- enum IconType {
- INVALID_ICON = 0x0,
- FAVICON = 1 << 0,
- TOUCH_ICON = 1 << 1,
- TOUCH_PRECOMPOSED_ICON = 1 << 2
- };
-
- FaviconURL();
- FaviconURL(const GURL& url, IconType type);
- ~FaviconURL();
-
- // The url of the icon.
- GURL icon_url;
-
- // The type of the icon
- IconType icon_type;
-};
-
-#endif // CHROME_COMMON_FAVICON_URL_
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/common/favicon_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698