HomeSort by relevance Sort by last modified time
    Searched refs:icon_url (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/chromium/chrome/common/
favicon_url.cc 12 : icon_url(url),
favicon_url.h 26 GURL icon_url; member in struct:FaviconURL
icon_messages.h 19 IPC_STRUCT_TRAITS_MEMBER(icon_url)
  /external/chromium_org/content/public/common/
favicon_url.cc 14 : icon_url(url),
favicon_url.h 28 GURL icon_url; member in struct:content::FaviconURL
show_desktop_notification_params.h 29 GURL icon_url; member in struct:content::ShowDesktopNotificationHostMsgParams
  /external/chromium_org/chrome/common/favicon/
favicon_types.h 44 GURL icon_url; member in struct:chrome::FaviconImageResult
66 GURL icon_url; member in struct:chrome::FaviconBitmapResult
  /external/chromium_org/android_webview/browser/
icon_helper.cc 54 if (!i->icon_url.is_valid())
59 if (listener_ && !listener_->ShouldDownloadFavicon(i->icon_url)) break;
60 web_contents()->DownloadImage(i->icon_url,
69 listener_->OnReceivedTouchIconUrl(i->icon_url.spec(), false);
73 listener_->OnReceivedTouchIconUrl(i->icon_url.spec(), true);
icon_helper.h 25 virtual bool ShouldDownloadFavicon(const GURL& icon_url) = 0;
26 virtual void OnReceivedIcon(const GURL& icon_url,
  /external/chromium/chrome/browser/
favicon_helper_unittest.cc 86 const GURL& icon_url,
90 icon_url_(icon_url),
96 const GURL& icon_url,
101 icon_url_(icon_url),
187 const GURL& icon_url,
191 history_handler_.reset(new HistoryRequestHandler(page_url, icon_url,
196 const GURL& icon_url,
200 history_handler_.reset(new HistoryRequestHandler(GURL(), icon_url,
221 const GURL& icon_url,
224 history_handler_.reset(new HistoryRequestHandler(page_url, icon_url,
    [all...]
favicon_service.cc 17 const GURL& icon_url,
25 hs->GetFavicon(request, icon_url, icon_type);
33 const GURL& icon_url,
41 hs->UpdateFaviconMappingAndFetch(request, page_url, icon_url, icon_type);
83 const GURL& icon_url,
88 hs->SetFavicon(page_url, icon_url, image_data, icon_type);
favicon_helper.cc 46 return favicon_url.icon_url == url &&
170 if (!i->icon_url.is_empty() && (i->icon_type & icon_types_)) {
196 entry->favicon().set_url(current_candidate()->icon_url);
201 history_icon_.icon_url, history_icon_.icon_type)) {
206 DownloadFaviconOrAskHistory(entry->url(), current_candidate()->icon_url,
228 const GURL& icon_url,
232 GetFaviconService()->UpdateFaviconMappingAndFetch(page_url, icon_url,
237 const GURL& icon_url,
241 GetFaviconService()->GetFavicon(icon_url, icon_type, consumer, callback);
255 const GURL& icon_url,
    [all...]
favicon_service.h 49 Handle GetFavicon(const GURL& icon_url,
54 // Fetches the |icon_type| of favicon at |icon_url|, sending the results to
57 // to |icon_url|. If the favicon has not been set, the database is not
60 const GURL& icon_url,
89 const GURL& icon_url,
favicon_helper.h 115 const GURL& icon_url,
121 const GURL& icon_url,
133 const GURL& icon_url,
175 const GURL& icon_url,
193 const GURL& icon_url,
  /external/chromium_org/chrome/browser/favicon/
favicon_handler_unittest.cc 50 const GURL& icon_url,
62 bitmap_result.icon_url = icon_url;
68 const GURL& icon_url,
70 SetFaviconBitmapResult(icon_url, chrome::FAVICON, false /* expired */,
128 const GURL& icon_url,
132 icon_url_(icon_url),
138 const GURL& icon_url,
142 icon_url_(icon_url),
249 const GURL& icon_url,
    [all...]
favicon_service.h 63 // |FaviconImageResult::icon_url| is the favicon that the favicon bitmaps in
95 // Requests the favicon at |icon_url| of |icon_type| whose size most closely
97 // favicon bitmap at |icon_url| is returned. |consumer| is notified when the
98 // bits have been fetched. |icon_url| is the URL of the icon itself, e.g.
104 const GURL& icon_url,
111 const GURL& icon_url,
119 const GURL& icon_url,
211 const GURL& icon_url,
217 // |icon_url| is the single favicon to map to |page_url|. Mappings from
220 // bitmap data for |icon_url| is deleted. It is important that |image
    [all...]
favicon_handler.cc 76 return favicon_url.icon_url == url &&
92 if (favicon_url.icon_url != bitmap_results[i].icon_url ||
288 const GURL& icon_url,
292 SetHistoryFavicons(url, icon_url, icon_type, image);
297 UpdateFavicon(entry, icon_url, image);
308 // not matter which result we get the |icon_url| from.
309 const GURL icon_url = favicon_bitmap_results.empty() ? local
310 GURL() : favicon_bitmap_results[0].icon_url;
311 UpdateFavicon(entry, icon_url, resized_image)
    [all...]
favicon_service.cc 62 const GURL& icon_url,
72 icon_urls.push_back(icon_url);
82 const GURL& icon_url,
95 icon_urls.push_back(icon_url);
108 const GURL& icon_url,
115 icon_urls.push_back(icon_url);
223 const GURL& icon_url,
228 history_service_->MergeFavicon(page_url, icon_url, icon_type, bitmap_data,
234 const GURL& icon_url,
255 bitmap_data_element.icon_url = icon_url
    [all...]
favicon_handler.h 132 const GURL& icon_url,
138 const GURL& icon_url,
150 const GURL& icon_url,
200 const GURL& icon_url,
223 const GURL& icon_url,
232 const GURL& icon_url,
  /external/chromium_org/content/common/
desktop_notification_messages.h 17 IPC_STRUCT_TRAITS_MEMBER(icon_url)
  /external/chromium_org/chrome/browser/profiles/
profile_loader.cc 60 const string16& icon_url,
63 profile_path, callback, name, icon_url, managed_user_id);
  /external/chromium_org/chrome/browser/sync/glue/
favicon_cache.cc 177 DCHECK_EQ(favicon_info->favicon_url, bitmap_result.icon_url);
179 DVLOG(1) << "Received invalid favicon at " << bitmap_result.icon_url.spec();
201 DVLOG(2) << "Ignoring local update for " << bitmap_result.icon_url.spec();
536 const GURL& icon_url,
539 if (!icon_url.is_valid() || !page_url.is_valid() || icon_url.SchemeIs("data"))
542 << icon_url.spec();
543 page_favicon_map_[page_url] = icon_url;
557 icon_url,
563 const GURL& icon_url,
    [all...]
favicon_cache.h 96 const GURL& icon_url,
126 void OnReceivedSyncFaviconImpl(const GURL& icon_url,
136 // Helper method to update the sync state of the favicon at |icon_url|. If
141 void UpdateSyncState(const GURL& icon_url,
146 // exists for |icon_url|, creates a new SyncedFaviconInfo in both
148 SyncedFaviconInfo* GetFaviconInfo(const GURL& icon_url);
150 // Updates the last visit time for the favicon at |icon_url| to |time| (and
152 void UpdateFaviconVisitTime(const GURL& icon_url, base::Time time);
  /external/chromium_org/chrome/browser/notifications/
notification.cc 33 const GURL& icon_url,
50 icon_url_(icon_url),
56 icon_url, title, body, dir));
120 icon_url_(notification.icon_url()),
134 icon_url_ = notification.icon_url();
  /external/chromium/chrome/browser/history/
thumbnail_database.h 115 FaviconID GetFaviconIDForFaviconURL(const GURL& icon_url,
124 GURL* icon_url);
127 FaviconID AddFavicon(const GURL& icon_url, IconType icon_type);

Completed in 273 milliseconds

1 2 3 4 5 6