HomeSort by relevance Sort by last modified time
    Searched refs:FAVICON (Results 76 - 100 of 113) sorted by null

1 2 34 5

  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 322 // our origins, use it to set their title and favicon
324 new String[] { Bookmarks.URL, Bookmarks.TITLE, Bookmarks.FAVICON },
331 int faviconIndex = c.getColumnIndex(Bookmarks.FAVICON);
  /external/chromium/chrome/browser/history/
history.cc 464 request, page_url, icon_url, history::FAVICON);
  /external/chromium/chrome/browser/
jumplist_win.cc 256 // Create an icon file from the favicon attached to the given |page|, and
685 // Ask FaviconService if it has a favicon of a URL.
691 url, history::FAVICON, &favicon_consumer_,
750 // Send a query that retrieves the first favicon.
756 history::FaviconData favicon) {
759 if (favicon.is_valid()) {
761 icon_urls_.front().second->SetIconData(favicon.image_data);
  /external/chromium/chrome/browser/prerender/
prerender_manager.cc 342 urls.push_back(FaviconURL(icon_url, FaviconURL::FAVICON));
  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.cc 64 const SkBitmap& favicon = model->GetFavicon(src); local
68 // Check for zero-dimension images. This can happen if the favicon is
70 if (favicon.empty())
73 // Re-encode the BookmarkNode's favicon as a PNG, and pass the data to the
75 if (!gfx::PNGCodec::EncodeBGRASkBitmap(favicon, false, dst))
507 // Sets the favicon of the given bookmark node from the given sync node.
524 // Applies the given favicon bytes vector to the given bookmark node.
529 // Registering a favicon requires that we provide a source URL, but we
531 // destination URL, which is not correct, but since the favicon URL
545 history::FAVICON);
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model_unittest.cc 496 // Test asynchronous loading of favicon from history service.
514 GURL url1_favicon("http://www.a.com/1/favicon.ico");
520 // Set the desired favicon for url1.
524 url1_favicon, icon_data, history::FAVICON);
527 // to retrieve the favicon from the favicon service.
531 // Make the favicon service run GetFavIconForURL,
540 // This time we will get the new favicon returned.
545 // Verify we did not get the default favicon.
548 // Verify we did get the expected favicon
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend.cc 29 #include "chrome/browser/favicon/favicon_changed_details.h"
88 // The amount of time before we re-fetch the favicon.
    [all...]
  /external/chromium_org/chrome/browser/
jumplist_win.cc 27 #include "chrome/browser/favicon/favicon_service.h"
28 #include "chrome/browser/favicon/favicon_service_factory.h"
39 #include "chrome/common/favicon/favicon_types.h"
239 // Create an icon file from the favicon attached to the given |page|, and
569 // If we have a pending favicon request, cancel it here (it is out of date).
586 // Send a query that retrieves the first favicon.
629 // Send a query that retrieves the first favicon.
680 // Ask FaviconService if it has a favicon of a URL.
689 chrome::FAVICON,
698 // If there is currently a favicon request in progress, it is now outdated
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_contents.cc 13 #include "chrome/browser/favicon/favicon_tab_helper.h"
516 if (it->icon_type == content::FaviconURL::FAVICON) {
prerender_manager.cc 25 #include "chrome/browser/favicon/favicon_tab_helper.h"
550 // the favicon during prerendering on mobile devices.
558 urls.push_back(content::FaviconURL(icon_url, content::FaviconURL::FAVICON));
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model_unittest.cc 12 #include "chrome/browser/favicon/favicon_service_factory.h"
498 // Test asynchronous loading of favicon from history service.
516 GURL url1_favicon("http://www.a.com/1/favicon.ico");
522 // Set the desired favicon for url1.
528 url1, url1_favicon, chrome::FAVICON,
532 // to retrieve the favicon from the favicon service.
536 // Make the favicon service run GetFavIconForURL,
545 // This time we will get the new favicon returned.
554 // Verify we did not get the default favicon
    [all...]
recent_tabs_sub_menu_model.cc 12 #include "chrome/browser/favicon/favicon_service_factory.h"
27 #include "chrome/common/favicon/favicon_types.h"
532 // If tab has synced favicon, use it.
533 // Note that currently, foreign tab only has favicon if --sync-tab-favicons
547 // Otherwise, start to fetch the favicon from local history asynchronously.
559 chrome::FAVICON,
  /external/chromium_org/chrome/browser/ui/webui/
chrome_web_ui_controller_factory.cc 503 // All extensions but the bookmark manager get their favicon from the icons
526 bitmap_result.icon_type = chrome::FAVICON;
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 93 Combined.FAVICON, // 4
BrowserBookmarksPage.java 457 Bitmap favicon = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_FAVICON); local
458 return BookmarkUtils.createAddToHomeIntent(context, url, title, touchIcon, favicon);
519 item.putParcelable(BrowserContract.Bookmarks.FAVICON,
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 575 BookmarkColumns.TITLE, BookmarkColumns.FAVICON };
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 155 // Listen for changes to favicons so that we can update the favicon of the
251 return node->favicon();
739 history::FaviconData favicon) {
746 if (favicon.is_valid() && gfx::PNGCodec::Decode(favicon.image_data->front(),
747 favicon.image_data->size(),
764 node->GetURL(), history::FAVICON, &load_consumer_,
785 // Prevent the observers from getting confused for multiple favicon loads.
792 // Got an updated favicon, for a URL, do a new request.
  /external/chromium/webkit/glue/
weburlloader_impl.cc 139 return ResourceType::FAVICON;
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model.cc 25 #include "chrome/browser/favicon/favicon_changed_details.h"
26 #include "chrome/browser/favicon/favicon_service.h"
27 #include "chrome/browser/favicon/favicon_service_factory.h"
31 #include "chrome/common/favicon/favicon_types.h"
267 // Listen for changes to favicons so that we can update the favicon of the
420 return node->favicon();
986 chrome::FAVICON,
1011 // Prevent the observers from getting confused for multiple favicon loads.
1018 // Got an updated favicon, for a URL, do a new request.
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 33 FAVICON: 'mv-favicon',
621 // The page favicon, if any.
624 var favicon = createAndAppendElement(
625 tileElement, 'div', CLASSES.FAVICON);
626 favicon.style.backgroundImage = 'url(' + faviconUrl + ')';
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.cc 19 #include "chrome/browser/favicon/favicon_service.h"
20 #include "chrome/browser/favicon/favicon_service_factory.h"
92 const gfx::Image& favicon = model->GetFavicon(src); local
94 // Check for empty images. This can happen if the favicon is
96 if (favicon.IsEmpty())
99 // Re-encode the BookmarkNode's favicon as a PNG, and pass the data to the
101 *dst = favicon.As1xPNGBytes();
740 // Sets the favicon of the given bookmark node from the given sync node.
748 const std::string& icon_bytes_str = specifics.favicon();
757 // Old clients may not be syncing the favicon URL. If the icon URL is no
    [all...]
favicon_cache.cc 10 #include "chrome/browser/favicon/favicon_service.h"
11 #include "chrome/browser/favicon/favicon_service_factory.h"
24 // Synced favicon storage and tracking.
25 // Note: we don't use the favicon service for storing these because these
36 // The actual favicon data.
40 // The URL this favicon was loaded from.
42 // Is the favicon for a bookmarked page?
44 // The last time a tab needed this favicon.
48 // Whether we've received a local update for this favicon since starting up.
55 // Information for handling local favicon updates. Used i
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
bookmarks_helper.cc 19 #include "chrome/browser/favicon/favicon_service_factory.h"
20 #include "chrome/browser/favicon/favicon_util.h"
61 // Helper class used to wait for changes to take effect on the favicon of a
124 // favicon is an asynchronous operation and doesn't necessarily invoke a
126 // favicon to load or not.
146 // Checks if the favicon data in |bitmap_a| and |bitmap_b| are equivalent.
154 LOG(ERROR) << "Favicon size mismatch: " << bitmap_a.getSize() << " ("
167 LOG(ERROR) << "Favicon bitmap mismatch";
174 // Represents a favicon image and the icon URL associated with it.
192 // Gets the favicon and icon URL associated with |node| in |model|
715 gfx::ImageSkia favicon; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
app_launcher_handler.cc 29 #include "chrome/browser/favicon/favicon_service_factory.h"
46 #include "chrome/common/favicon/favicon_types.h"
685 LOG(ERROR) << "No favicon service";
698 chrome::FAVICON,
  /external/chromium_org/chrome/browser/ui/webui/options/
browser_options_handler.cc 687 // Create our favicon data source.
689 profile, new FaviconSource(profile, FaviconSource::FAVICON));
    [all...]

Completed in 670 milliseconds

1 2 34 5