1 // Copyright 2014 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 IOS_WEB_PUBLIC_FAVICON_URL_
6 #define IOS_WEB_PUBLIC_FAVICON_URL_
10 #include "ui/gfx/geometry/size.h"
15 // The favicon url from the render.
17 // The icon type in a page. The definition must be same as
18 // favicon_base::IconType.
23 TOUCH_PRECOMPOSED_ICON
= 1 << 2
27 FaviconURL(const GURL
& url
,
29 const std::vector
<gfx::Size
>& sizes
);
32 // The url of the icon.
35 // The type of the icon
38 // Icon's bitmaps' size
39 std::vector
<gfx::Size
> icon_sizes
;
44 #endif // IOS_WEB_PUBLIC_FAVICON_URL_