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

1 2 3 4 5

  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_drag_drop_cocoa.h 19 NSImage* DragImageForBookmark(NSImage* favicon, const base::string16& title);
  /external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
NavigationEntry.java 25 String title, Bitmap favicon) {
31 mFavicon = favicon;
83 * @return The favicon of the page. This may be null.
90 * @param favicon The updated favicon to replace the existing one with.
92 public void updateFavicon(Bitmap favicon) {
93 mFavicon = favicon;
  /external/chromium_org/components/favicon/core/
favicon_url.cc 5 #include "components/favicon/core/favicon_url.h"
7 namespace favicon { namespace
21 } // namespace favicon
favicon_url.h 14 namespace favicon { namespace
16 // Stores metadata about a given favicon.
34 } // namespace favicon
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
BookmarkUtils.java 53 * @param favicon Bookmark favicon.
54 * @param rValue Red component of the dominant favicon color.
55 * @param gValue Green component of the dominant favicon color.
56 * @param bValue Blue component of the dominant favicon color.
60 Bitmap favicon, int rValue, int gValue, int bValue) {
64 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, favicon, rValue,
74 * @param favicon Bookmark favicon.
75 * @param rValue Red component of the dominant favicon color
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 23 favicon.BackedBySameObjectAs(data.favicon) &&
tab_renderer_data.h 41 gfx::ImageSkia favicon; member in struct:TabRendererData
  /external/chromium_org/chrome/browser/favicon/
favicon_tab_helper.cc 5 #include "chrome/browser/favicon/favicon_tab_helper.h"
8 #include "chrome/browser/favicon/chrome_favicon_client.h"
9 #include "chrome/browser/favicon/chrome_favicon_client_factory.h"
10 #include "chrome/browser/favicon/favicon_handler.h"
11 #include "chrome/browser/favicon/favicon_service.h"
12 #include "chrome/browser/favicon/favicon_service_factory.h"
52 client_, this, FaviconHandler::FAVICON, download_largest_icon));
68 // Like GetTitle(), we also want to use the favicon for the last committed
106 // No favicon on Instant New Tab Pages.
118 // Make sure the page is in history, otherwise adding the favicon doe
    [all...]
favicon_handler.h 16 #include "components/favicon/core/favicon_url.h"
31 // favicon.
33 // FetchFavicon requests the favicon from the favicon service which in turn
34 // requests the favicon from the history database. At this point
36 // favicon. To ensure we handle reloading stale favicons as well as
37 // reloading a favicon on page reload we always request the favicon from
38 // history regardless of whether the active favicon is valid.
42 // db on our request for the favicon
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/topsites/magic8ball/
newTab.js 14 eightBallWindow.style.backgroundImage = 'url(chrome://favicon/' +
  /external/chromium_org/chrome/browser/ui/views/
tab_icon_view.cc 38 // favicon.
115 // For source images smaller than the favicon square, scale them as if they
116 // were padded to fit the favicon square, so we don't blow up tiny favicons
147 gfx::ImageSkia favicon = model_->GetFaviconForTabIconView(); local
148 if (!favicon.isNull()) {
150 PaintFavicon(canvas, favicon);
  /external/chromium_org/chrome/browser/history/android/
favicon_sql_handler.cc 20 HistoryAndBookmarkRow::FAVICON};
38 // icon is already in database, just create a new favicon.
41 GURL(), favicon_base::FAVICON, row.favicon(), Time::Now(), gfx::Size());
49 // Remove all icon mappings to favicons of type FAVICON.
52 i->url, favicon_base::FAVICON, &icon_mappings);
65 // As we update the favicon, Let's remove unused favicons if any.
97 if (!row->is_value_set_explicitly(HistoryAndBookmarkRow::FAVICON) ||
106 GURL(), favicon_base::FAVICON, row->favicon(), Time::Now(), gfx::Size())
    [all...]
  /external/chromium_org/ui/webui/resources/js/
util.js 311 * Creates a CSS -webkit-image-set for a favicon request.
312 * @param {string} url The url for the favicon.
313 * @param {number=} opt_size Optional preferred size of the favicon.
314 * @param {string=} opt_type Optional type of favicon to request. Valid values
315 * are 'favicon' and 'touch-icon'. Default is 'favicon'.
316 * @return {string} -webkit-image-set for the favicon.
320 var type = opt_type || 'favicon';
326 * Creates a new URL for a favicon request for the current device pixel ratio.
330 * @param {string} url The url for the favicon
    [all...]
  /external/chromium_org/chrome/browser/history/
thumbnail_database_unittest.cc 43 const GURL kIconUrl1 = GURL("http://www.google.com/favicon.ico");
44 const GURL kIconUrl2 = GURL("http://www.yahoo.com/favicon.ico");
46 const GURL kIconUrl5 = GURL("http://www.bing.com/favicon.ico");
201 scoped_refptr<base::RefCountedBytes> favicon(new base::RefCountedBytes(data));
206 db.AddFavicon(url, favicon_base::TOUCH_ICON, favicon, time, gfx::Size());
251 scoped_refptr<base::RefCountedBytes> favicon(new base::RefCountedBytes(data));
256 db.AddFaviconBitmap(id, favicon, time, gfx::Size());
259 favicon_base::FaviconID id2 = db.AddFavicon(url, favicon_base::FAVICON);
267 EXPECT_TRUE(db.GetIconMappingsForPageURL(url, favicon_base::FAVICON, NULL));
272 EXPECT_FALSE(db.GetIconMappingsForPageURL(url, favicon_base::FAVICON, NULL))
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/favicon/
FaviconHelper.java 5 package org.chromium.chrome.browser.favicon;
16 * You can request a favicon image by web page URL. Note that an instance of
25 public static final int FAVICON = 1 << 0;
36 * This method will be called when the result favicon is ready.
37 * @param image Favicon image.
38 * @param iconUrl Favicon image's icon url.
67 * Get Favicon bitmap for the requested arguments. Retrieves favicons only for pages the user
70 * @param pageUrl The target Page URL to get the favicon.
72 * @param desiredSizeInPixel The size of the favicon in pixel we want to get.
87 * Fetches the first available favicon for a URL that exceeds the minimum size threshold. I
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp4/
suggestions_page.css 44 .suggestions .favicon {
55 html[dir='rtl'] .suggestions .favicon {
  /external/chromium_org/chrome/utility/importer/
bookmark_html_reader.h 69 // See above, this will also put the data: URL of the favicon into |*favicon|
70 // if there is a favicon given. |post_data| is set for POST base keywords to
76 GURL* favicon,
bookmark_html_reader_unittest.cc 59 GURL url, favicon; local
66 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
77 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
87 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
98 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
112 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
123 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
bookmark_html_reader.cc 53 // Given the URL of a page and a favicon data URL, adds an appropriate record
54 // to the given favicon usage vector.
75 // We need to make up a URL for the favicon. We use a version of the page's
77 usage.favicon_url = GURL(std::string("made-up-favicon:") + link_url.spec());
79 // We only have one URL per favicon for Firefox 2 bookmarks.
141 GURL url, favicon; local
149 &url, &favicon, &shortcut,
183 // Save the favicon. DataURLToFaviconUsage will handle the case where
184 // there is no favicon.
186 DataURLToFaviconUsage(url, favicon, favicons)
    [all...]
  /external/chromium_org/components/test/data/web_database/
version_52.sql 11 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&q={searchTerms}&{google:cursorPosition}{google:zeroPrefixUrl}{google:pageClassification}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'2BB4ECA1-7D0F-2FB9-45B0-AD87B8298C9D','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv','{google:baseURL}searchbyimage/upload','','','','encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource}');
13 INSERT INTO "keywords" VALUES(4,'Yahoo!','yahoo.com','http://search.yahoo.com/favicon.ico','http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}',2,0,'',0,'531278E0-9380-7556-D9A0-9F85AA1DCF06','[]','','','','','','');
14 INSERT INTO "keywords" VALUES(5,'AOL','aol.com','http://search.aol.com/favicon.ico','http://search.aol.com/aol/search?query={searchTerms}',1,'',0,0,'UTF-8',1,'http://autocomplete.search.aol.com/autocomplete/get?output=json&it=&q={searchTerms}',35,0,'',0,'680838DC-A89F-7598-901A-C6B849F94F67','[]','','','','','','');
15 INSERT INTO "keywords" VALUES(6,'Ask','ask.com','http://sp.ask.com/sh/i/a16/favicon/favicon.ico','http://www.ask.com/web?q={searchTerms}',1,'',0,0,'UTF-8',1,'http://ss.ask.com/query?q={searchTerms}&li=ff',4,0,'',0,'25AC092A-10E6-EA19-11CE-55382548F3DC','[]','','','','','','');
  /external/chromium_org/chrome/browser/android/
tab_android.cc 15 #include "chrome/browser/favicon/favicon_tab_helper.h"
651 // If the favicon isn't valid, it will return a default bitmap.
653 SkBitmap favicon =
660 if (favicon.empty()) {
661 favicon = favicon_tab_helper->GetFavicon().AsBitmap();
664 if (!favicon.empty()) {
668 if (favicon.width() != target_size_dip ||
669 favicon.height() != target_size_dip) {
670 favicon =
671 skia::ImageOperations::Resize(favicon,
    [all...]
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.cc 21 #include "chrome/browser/favicon/favicon_tab_helper.h"
83 // Fill the tile logo with the dominant color of the favicon bitmap.
91 // Now paint a faded square for the favicon to go in.
98 // Now paint the favicon into the tile, leaving some room at the bottom for
152 // |favicon| can be a null image (i.e. favicon.isNull() can be true), in
156 const SkBitmap& favicon);
175 const SkBitmap& favicon)
178 favicon_(favicon) {}
262 // Outstanding favicon download requests
377 SkBitmap favicon; local
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
NavigationPopupTest.java 52 String title, Bitmap favicon) {
53 super(index, url, virtualUrl, originalUrl, title, favicon);
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 73 jbyteArray favicon,
92 jbyteArray favicon,
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
chrome_shared.css 76 html[dir='rtl'] .favicon-cell.weakrtl {

Completed in 492 milliseconds

1 2 3 4 5