1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_FAVICON_URL_
6 #define CHROME_COMMON_FAVICON_URL_
8 #include "googleurl/src/gurl.h"
10 // The favicon url from the render.
12 // The icon type in a page. The definition must be same as history::IconType.
17 TOUCH_PRECOMPOSED_ICON
= 1 << 2
21 FaviconURL(const GURL
& url
, IconType type
);
24 // The url of the icon.
27 // The type of the icon
31 #endif // CHROME_COMMON_FAVICON_URL_