Searched refs:icon_type (Results 1 - 23 of 23) sorted by relevance

/external/chromium/chrome/common/
H A Dfavicon_url.cc8 : icon_type(INVALID_ICON) {
13 icon_type(type) {
H A Dfavicon_url.h29 IconType icon_type; member in struct:FaviconURL
H A Dicon_messages.h20 IPC_STRUCT_TRAITS_MEMBER(icon_type)
/external/chromium/chrome/browser/
H A Dfavicon_helper.cc26 // Returns history::IconType the given icon_type corresponds to.
27 history::IconType ToHistoryIconType(FaviconURL::IconType icon_type) { argument
28 switch (icon_type) {
45 history::IconType icon_type) {
47 favicon_url.icon_type == static_cast<FaviconURL::IconType>(icon_type);
54 icon_type(history::INVALID_ICON) {
60 history::IconType icon_type)
64 icon_type(icon_type) {
43 DoUrlAndIconMatch(const FaviconURL& favicon_url, const GURL& url, history::IconType icon_type) argument
57 DownloadRequest(const GURL& url, const GURL& image_url, ImageDownloadCallback* callback, history::IconType icon_type) argument
67 FaviconHelper(TabContents* tab_contents, Type icon_type) argument
106 DownloadImage(const GURL& image_url, int image_size, history::IconType icon_type, ImageDownloadCallback* callback) argument
118 SetFavicon( const GURL& url, const GURL& image_url, const SkBitmap& image, history::IconType icon_type) argument
226 UpdateFaviconMappingAndFetch( const GURL& page_url, const GURL& icon_url, history::IconType icon_type, CancelableRequestConsumerBase* consumer, FaviconService::FaviconDataCallback* callback) argument
236 GetFavicon( const GURL& icon_url, history::IconType icon_type, CancelableRequestConsumerBase* consumer, FaviconService::FaviconDataCallback* callback) argument
253 SetHistoryFavicon( const GURL& page_url, const GURL& icon_url, const std::vector<unsigned char>& image_data, history::IconType icon_type) argument
357 DownloadFaviconOrAskHistory( const GURL& page_url, const GURL& icon_url, history::IconType icon_type) argument
420 ScheduleDownload(const GURL& url, const GURL& image_url, int image_size, history::IconType icon_type, ImageDownloadCallback* callback) argument
[all...]
H A Dfavicon_helper.h77 FaviconHelper(TabContents* tab_contents, Type icon_type);
93 history::IconType icon_type,
116 history::IconType icon_type,
122 history::IconType icon_type,
135 history::IconType icon_type);
151 history::IconType icon_type);
156 history::IconType icon_type; member in struct:FaviconHelper::DownloadRequest
176 history::IconType icon_type);
187 history::IconType icon_type,
195 history::IconType icon_type);
[all...]
H A Dfavicon_service.cc18 history::IconType icon_type,
25 hs->GetFavicon(request, icon_url, icon_type);
34 history::IconType icon_type,
41 hs->UpdateFaviconMappingAndFetch(request, page_url, icon_url, icon_type);
85 history::IconType icon_type) {
88 hs->SetFavicon(page_url, icon_url, image_data, icon_type);
16 GetFavicon( const GURL& icon_url, history::IconType icon_type, CancelableRequestConsumerBase* consumer, FaviconDataCallback* callback) argument
31 UpdateFaviconMappingAndFetch( const GURL& page_url, const GURL& icon_url, history::IconType icon_type, CancelableRequestConsumerBase* consumer, FaviconService::FaviconDataCallback* callback) argument
82 SetFavicon(const GURL& page_url, const GURL& icon_url, const std::vector<unsigned char>& image_data, history::IconType icon_type) argument
H A Dfavicon_service.h47 // Requests the |icon_type| of favicon. |consumer| is notified when the bits
50 history::IconType icon_type,
54 // Fetches the |icon_type| of favicon at |icon_url|, sending the results to
61 history::IconType icon_type,
91 history::IconType icon_type);
H A Dfavicon_helper_unittest.cc87 int icon_type,
91 icon_type_(icon_type),
97 int icon_type,
102 icon_type_(icon_type),
188 history::IconType icon_type,
192 icon_type, callback));
197 history::IconType icon_type,
201 icon_type, callback));
223 history::IconType icon_type) OVERRIDE {
225 icon_type, image_dat
85 HistoryRequestHandler(const GURL& page_url, const GURL& icon_url, int icon_type, FaviconService::FaviconDataCallback* callback) argument
95 HistoryRequestHandler(const GURL& page_url, const GURL& icon_url, int icon_type, const std::vector<unsigned char>& image_data, FaviconService::FaviconDataCallback* callback) argument
[all...]
/external/chromium/chrome/browser/history/
H A Dthumbnail_database.h112 // FAVICON, and the icon type is returned in icon_type parameter if it is not
117 IconType* icon_type);
127 FaviconID AddFavicon(const GURL& icon_url, IconType icon_type);
242 // Adds support for the icon_type in favicon table.
H A Dhistory_backend.h224 IconType icon_type);
229 IconType icon_type);
451 // Only a single type can be given in icon_type when page_url is specified.
456 int icon_type);
462 IconType icon_type);
471 IconType icon_type,
H A Dhistory_backend.cc1610 IconType icon_type) {
1611 UpdateFaviconMappingAndFetchImpl(&page_url, icon_url, request, icon_type);
1709 icon_url, icon_types, &favicon.icon_type);
1722 SetFaviconMapping(*page_url, favicon_id, favicon.icon_type);
1748 (icon_mappings.front().icon_type & icon_types) &&
1754 favicon.icon_type = icon_mappings.front().icon_type;
1770 IconType icon_type) {
1776 icon_url, icon_type, NULL);
1778 id = thumbnail_db_->AddFavicon(icon_url, icon_type);
1606 UpdateFaviconMappingAndFetch( scoped_refptr<GetFaviconRequest> request, const GURL& page_url, const GURL& icon_url, IconType icon_type) argument
1766 SetFavicon( const GURL& page_url, const GURL& icon_url, scoped_refptr<RefCountedMemory> data, IconType icon_type) argument
1786 SetFaviconMapping(const GURL& page_url, FaviconID id, IconType icon_type) argument
1837 AddOrUpdateIconMapping(const GURL& page_url, FaviconID id, IconType icon_type, FaviconID* replaced_icon) argument
[all...]
H A Dthumbnail_database.cc35 icon_mapping->icon_type =
207 "icon_type INTEGER DEFAULT 1)"); // Set the default as FAVICON
404 IconType* icon_type) {
406 "SELECT id, icon_type FROM favicons WHERE url=? AND (icon_type & ? > 0) "
407 "ORDER BY icon_type DESC"));
416 if (icon_type)
417 *icon_type = static_cast<IconType>(statement.ColumnInt(1));
448 IconType icon_type) {
451 "INSERT INTO favicons (url, icon_type) VALUE
402 GetFaviconIDForFaviconURL(const GURL& icon_url, int required_icon_type, IconType* icon_type) argument
447 AddFavicon(const GURL& icon_url, IconType icon_type) argument
[all...]
H A Dthumbnail_database_unittest.cc215 EXPECT_EQ(icon_mapping.front().icon_type, TOUCH_ICON);
334 EXPECT_EQ(FAVICON, icon_mapping.front().icon_type);
349 EXPECT_EQ(TOUCH_ICON, icon_mapping.front().icon_type);
363 EXPECT_EQ(TOUCH_PRECOMPOSED_ICON, icon_mapping.front().icon_type);
426 EXPECT_EQ(FAVICON, icon_mappings[0].icon_type);
441 EXPECT_EQ(FAVICON, icon_mappings[0].icon_type);
450 EXPECT_EQ(FAVICON, icon_mappings[0].icon_type);
H A Dhistory.cc453 history::IconType icon_type) {
455 icon_url, icon_type);
462 history::IconType icon_type) {
478 history::IconType icon_type) {
485 icon_type);
451 GetFavicon(FaviconService::GetFaviconRequest* request, const GURL& icon_url, history::IconType icon_type) argument
458 UpdateFaviconMappingAndFetch( FaviconService::GetFaviconRequest* request, const GURL& page_url, const GURL& icon_url, history::IconType icon_type) argument
475 SetFavicon(const GURL& page_url, const GURL& icon_url, const std::vector<unsigned char>& image_data, history::IconType icon_type) argument
H A Dhistory_types.h679 // Defines the icon types. They are also stored in icon_type field of favicons
703 IconType icon_type; member in struct:history::IconMapping
727 history::IconType icon_type; member in struct:history::FaviconData
H A Dhistory.h647 history::IconType icon_type);
654 history::IconType icon_type);
676 history::IconType icon_type);
H A Dhistory_types.cc408 icon_type(INVALID_ICON) {
417 icon_type(history::INVALID_ICON) {
H A Dexpire_history_backend_unittest.cc71 FaviconID GetFavicon(const GURL& page_url, IconType icon_type);
324 IconType icon_type) {
326 thumb_db_->GetIconMappingForPageURL(page_url, icon_type, &icon_mapping);
323 GetFavicon(const GURL& page_url, IconType icon_type) argument
H A Dhistory_backend_unittest.cc133 FaviconID GetFavicon(const GURL& url, IconType icon_type) { argument
135 if (backend_->thumbnail_db_->GetIconMappingForPageURL(url, icon_type,
/external/chromium/chrome/browser/extensions/
H A Dextension_web_ui.cc111 favicon.icon_type = history::FAVICON;
/external/chromium/chrome/browser/prerender/
H A Dprerender_contents.cc474 if (i->icon_type == FaviconURL::FAVICON) {
/external/libmtp/src/
H A Dptp.c2250 params->wifi_profiles[profn].icon_type = data[pos++];
2278 test.icon_type = 1;
2346 buffer[0x18] = profile->icon_type;
H A Dptp.h1035 uint8_t icon_type; member in struct:_PTPNIKONWifiProfile

Completed in 488 milliseconds