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

1 2

  /external/chromium_org/components/favicon/core/
favicon_url.cc 9 FaviconURL::FaviconURL() : icon_type(favicon_base::INVALID_ICON) {
12 FaviconURL::FaviconURL(const GURL& url,
18 FaviconURL::~FaviconURL() {
favicon_url.h 17 struct FaviconURL {
18 FaviconURL();
19 FaviconURL(const GURL& url,
22 ~FaviconURL();
  /external/chromium_org/content/public/common/
favicon_url.cc 9 FaviconURL::FaviconURL()
13 FaviconURL::FaviconURL(const GURL& url,
18 FaviconURL::~FaviconURL() {
favicon_url.h 17 struct CONTENT_EXPORT FaviconURL {
27 FaviconURL();
28 FaviconURL(const GURL& url,
31 ~FaviconURL();
  /external/chromium_org/chrome/browser/extensions/
favicon_downloader_unittest.cc 60 virtual std::vector<content::FaviconURL> GetFaviconURLsFromWebContents()
86 void UpdateFaviconURLs(const std::vector<content::FaviconURL>& candidates) {
90 void set_initial_favicon_urls(const std::vector<content::FaviconURL>& urls) {
95 std::vector<content::FaviconURL> initial_favicon_urls_;
105 std::vector<content::FaviconURL> favicon_urls;
106 favicon_urls.push_back(content::FaviconURL(
107 favicon_url, content::FaviconURL::FAVICON, std::vector<gfx::Size>()));
126 std::vector<content::FaviconURL> favicon_urls;
127 favicon_urls.push_back(content::FaviconURL(
128 favicon_url, content::FaviconURL::FAVICON, std::vector<gfx::Size>()))
    [all...]
favicon_downloader.h 19 struct FaviconURL;
53 virtual std::vector<content::FaviconURL> GetFaviconURLsFromWebContents();
57 void FetchIcons(const std::vector<content::FaviconURL>& favicon_urls);
72 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
favicon_downloader.cc 32 std::vector<content::FaviconURL> favicon_tab_helper_urls =
49 std::vector<content::FaviconURL>
56 : std::vector<content::FaviconURL>();
60 const std::vector<content::FaviconURL>& favicon_urls) {
62 for (std::vector<content::FaviconURL>::const_iterator it =
65 if (it->icon_type != content::FaviconURL::INVALID_ICON)
115 const std::vector<content::FaviconURL>& candidates) {
  /external/chromium_org/android_webview/browser/
icon_helper.cc 61 const std::vector<content::FaviconURL>& candidates) {
63 for (std::vector<content::FaviconURL>::const_iterator i = candidates.begin();
69 case content::FaviconURL::FAVICON:
80 case content::FaviconURL::TOUCH_ICON:
84 case content::FaviconURL::TOUCH_PRECOMPOSED_ICON:
88 case content::FaviconURL::INVALID_ICON:
icon_helper.h 16 struct FaviconURL;
46 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.h 36 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
60 std::vector<content::FaviconURL> favicon_url_candidates_;
metro_pin_tab_helper_win.cc 395 for (std::vector<content::FaviconURL>::const_iterator iter =
421 const std::vector<content::FaviconURL>& candidates) {
  /external/chromium_org/chrome/browser/favicon/
favicon_tab_helper.h 61 const std::vector<content::FaviconURL>& favicon_urls() const {
68 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
112 std::vector<content::FaviconURL> favicon_urls_;
favicon_tab_helper.cc 230 content::FaviconURL::IconType icon_type) {
232 case content::FaviconURL::FAVICON:
234 case content::FaviconURL::TOUCH_ICON:
236 case content::FaviconURL::TOUCH_PRECOMPOSED_ICON:
238 case content::FaviconURL::INVALID_ICON:
246 const std::vector<content::FaviconURL>& candidates) {
249 std::vector<favicon::FaviconURL> favicon_urls;
251 const content::FaviconURL& candidate = candidates[i];
253 favicon::FaviconURL(candidate.icon_url,
favicon_handler_unittest.cc 23 using favicon::FaviconURL;
283 const std::vector<FaviconURL>& urls() {
287 FaviconURL* current_candidate() {
419 const std::vector<FaviconURL>& candidate_icons,
444 const std::vector<FaviconURL>& candidate_icons) {
508 std::vector<FaviconURL> urls;
510 FaviconURL(icon_url, favicon_base::FAVICON, std::vector<gfx::Size>()));
552 std::vector<FaviconURL> urls;
554 FaviconURL(icon_url, favicon_base::FAVICON, std::vector<gfx::Size>()));
623 std::vector<FaviconURL> urls
    [all...]
favicon_handler.h 94 void OnUpdateFaviconURL(const std::vector<favicon::FaviconURL>& candidates);
112 const std::vector<favicon::FaviconURL>& image_urls() const {
231 favicon::FaviconURL* current_candidate() {
277 std::vector<favicon::FaviconURL> image_urls_;
favicon_handler.cc 25 using favicon::FaviconURL;
53 bool DoUrlAndIconMatch(const FaviconURL& favicon_url,
63 const FaviconURL& favicon_url,
171 bool CompareIconSize(const FaviconURL& b1, const FaviconURL& b2) {
346 const std::vector<FaviconURL>& candidates) {
349 for (std::vector<FaviconURL>::const_iterator i = candidates.begin();
414 // Use the largest bitmap if FaviconURL doesn't have sizes attribute.
437 // The downloaded icon is still valid when there is no FaviconURL update
670 for (std::vector<FaviconURL>::iterator i = image_urls_.begin()
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.cc 43 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
72 const std::vector<content::FaviconURL>& candidates) {
80 std::vector<content::FaviconURL>::const_iterator iter;
82 if (iter->icon_type != content::FaviconURL::FAVICON)
launcher_favicon_loader_browsertest.cc 48 const std::vector<content::FaviconURL>& candidates) OVERRIDE {
  /external/chromium_org/athena/content/
app_activity.h 70 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
web_activity.h 79 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
app_activity.cc 197 const std::vector<content::FaviconURL>& candidates) {
web_activity.cc 597 const std::vector<content::FaviconURL>& candidates) {
603 if (candidates[i].icon_type == content::FaviconURL::FAVICON) {
  /external/chromium_org/content/public/browser/
web_contents_observer.h 27 struct FaviconURL;
289 // Invoked when new FaviconURL candidates are received from the renderer.
290 virtual void DidUpdateFaviconURL(const std::vector<FaviconURL>& candidates) {}
  /external/chromium_org/content/common/
view_messages.h 83 IPC_ENUM_TRAITS(content::FaviconURL::IconType)
166 IPC_STRUCT_TRAITS_BEGIN(content::FaviconURL)
    [all...]
  /external/chromium_org/content/renderer/
render_view_impl.cc 425 static FaviconURL::IconType ToFaviconType(blink::WebIconURL::Type type) {
428 return FaviconURL::FAVICON;
430 return FaviconURL::TOUCH_ICON;
432 return FaviconURL::TOUCH_PRECOMPOSED_ICON;
434 return FaviconURL::INVALID_ICON;
436 return FaviconURL::INVALID_ICON;
    [all...]

Completed in 1522 milliseconds

1 2