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 CONTENT_PUBLIC_COMMON_FAVICON_URL_H_
6 #define CONTENT_PUBLIC_COMMON_FAVICON_URL_H_
10 #include "content/common/content_export.h"
11 #include "ui/gfx/geometry/size.h"
16 // The favicon url from the render.
17 struct CONTENT_EXPORT FaviconURL
{
18 // The icon type in a page. The definition must be same as
19 // favicon_base::IconType.
24 TOUCH_PRECOMPOSED_ICON
= 1 << 2
28 FaviconURL(const GURL
& url
,
30 const std::vector
<gfx::Size
>& sizes
);
33 // The url of the icon.
36 // The type of the icon
39 // Icon's bitmaps' size
40 std::vector
<gfx::Size
> icon_sizes
;
43 } // namespace content
45 #endif // CONTENT_PUBLIC_COMMON_FAVICON_URL_H_