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

1 2 3 4 5 6 7 8 9

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
app.yaml 12 - url: /favicon.ico
13 static_files: favicon.ico
14 upload: favicon.ico
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_drag_drop_cocoa.h 19 NSImage* DragImageForBookmark(NSImage* favicon, const string16& title);
  /external/chromium/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 22 favicon.pixelRef() &&
23 favicon.pixelRef() == data.favicon.pixelRef() &&
24 favicon.pixelRefOffset() == data.favicon.pixelRefOffset() &&
tab_renderer_data.h 41 SkBitmap favicon; member in struct:TabRendererData
  /external/chromium_org/content/public/android/java/src/org/chromium/content/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/chrome/browser/
favicon_helper.cc 29 case FaviconURL::FAVICON:
30 return history::FAVICON;
71 icon_types_(icon_type == FAVICON ? history::FAVICON :
97 // Request the favicon from the history service. In parallel to this the
98 // renderer is going to notify us (well TabContents) when the favicon url is
134 if (url == url_ && icon_type == history::FAVICON) {
150 // No matter what happens, we need to mark the favicon as being set.
151 entry->favicon().set_is_valid(true);
156 entry->favicon().set_bitmap(image)
    [all...]
jumplist_win.h 60 void SetIcon(const std::wstring& icon, int index, bool favicon) {
63 favicon_ = favicon;
145 // Starts loading a favicon for each URL in |icon_urls_|.
152 // that retrieves a favicon for each URL in the list.
156 // A callback function for HistoryService that notify when a requested favicon
163 history::FaviconData favicon);
possible_url_model.h 40 history::FaviconData favicon);
56 // Our consumer for favicon requests.
63 // Map Result::index -> Favicon.
  /external/chromium_org/chrome/browser/resources/ntp_android/
bookmarks.css 87 .favicon-cell {
97 .favicon-cell-active {
102 .favicon-box {
116 .favicon-box.folder {
120 .favicon-cell .title {
133 .favicon-icon {
140 .favicon-icon.document {
156 .favicon-box.document {
157 /* a 'document' favicon looks like a little web page with the favicon
    [all...]
bookmarks_tablet.css 8 body[device='tablet'] .favicon-cell {
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab.cc 21 // The size of the favicon touch area. This generally would be the same as
193 (data().favicon.isNull() ? kFaviconSize : data().favicon.width());
197 if (!data().favicon.isNull() && data().favicon.width() != kFaviconSize)
198 favicon_x += (data().favicon.width() - kFaviconSize) / 2;
219 if (!data().favicon.isNull()) {
221 if ((data().favicon.width() == kTouchTabIconSize) &&
222 (data().favicon.height() == kTouchTabIconSize)) {
223 canvas->DrawBitmapInt(data().favicon, 0, 0
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 24 favicon.BackedBySameObjectAs(data.favicon) &&
tab_renderer_data.h 63 gfx::ImageSkia favicon; member in struct:TabRendererData
  /external/chromium/chrome/browser/ui/webui/
favicon_source.cc 36 history::FAVICON,
42 history::FAVICON,
67 history::FaviconData favicon) {
73 if (favicon.is_valid()) {
75 SendResponse(request_id, favicon.image_data);
favicon_source.h 36 // Called when favicon data is available from the history backend.
38 history::FaviconData favicon);
40 // Sends the default favicon.
48 // Raw PNG representation of the favicon to show when the favicon
49 // database doesn't have a favicon for a webpage.
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
BookmarkUtils.java 49 * @param favicon Bookmark favicon.
50 * @param rValue Red component of the dominant favicon color.
51 * @param gValue Green component of the dominant favicon color.
52 * @param bValue Blue component of the dominant favicon color.
56 Bitmap favicon, int rValue, int gValue, int bValue) {
61 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, favicon, rValue,
82 * @param favicon Bookmark favicon bitmap.
83 * @param rValue Red component of the dominant favicon color
    [all...]
  /external/chromium/chrome/browser/history/
thumbnail_database_unittest.cc 119 scoped_refptr<RefCountedBytes> favicon(new RefCountedBytes(data));
122 FaviconID id = db.AddFavicon(url, FAVICON);
124 db.SetFavicon(id, favicon, time);
145 scoped_refptr<RefCountedBytes> favicon(new RefCountedBytes(data));
151 db.SetFavicon(id, favicon, time);
167 scoped_refptr<RefCountedBytes> favicon(new RefCountedBytes(data));
172 db.SetFavicon(id, favicon, time);
199 scoped_refptr<RefCountedBytes> favicon(new RefCountedBytes(data));
204 db.SetFavicon(id, favicon, time);
207 FaviconID id2 = db.AddFavicon(url, FAVICON);
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_audio_indicator.h 41 void set_favicon(const gfx::ImageSkia& favicon) { favicon_ = favicon; }
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebHistoryItemChromium.java 84 String url, String originalUrl, String title, Bitmap favicon) {
88 mFavicon = favicon;
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 130 *icon = entry->favicon().bitmap();
131 if (!entry->favicon().is_valid() && menu_model_delegate()) {
222 // If the favicon has already been requested for this menu, don't do
234 entry->url(), history::FAVICON, &load_consumer_,
241 history::FaviconData favicon) {
242 if (favicon.is_valid()) {
263 // Now that we have a valid NavigationEntry, decode the favicon and assign
266 if (gfx::PNGCodec::Decode(favicon.image_data->front(),
267 favicon.image_data->size(),
269 entry->favicon().set_is_valid(true)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 60 static Bitmap createIcon(Context context, Bitmap touchIcon, Bitmap favicon,
66 return createIcon(context, touchIcon, favicon, type, iconDimension, iconDensity);
82 Bitmap favicon, BookmarkIconType type, int iconDimension, int iconDensity) {
101 // If we have a favicon, overlay it in a nice rounded white box on top of the
103 if (favicon != null) {
104 drawFaviconToCanvas(context, favicon, canvas, iconBounds, type);
115 Bitmap touchIcon, Bitmap favicon) {
120 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, touchIcon, favicon,
180 private static void drawFaviconToCanvas(Context context, Bitmap favicon,
183 // filtering the favicon
    [all...]
  /external/chromium/chrome/browser/ui/views/
tab_icon_view.cc 37 // favicon.
110 // For source images smaller than the favicon square, scale them as if they
111 // were padded to fit the favicon square, so we don't blow up tiny favicons
142 SkBitmap favicon = model_->GetFaviconForTabIconView(); local
143 if (!favicon.isNull()) {
145 PaintFavicon(canvas, favicon);
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.h 61 // Starts async fetch for the next bookmark favicon.
66 // Favicon fetch callback. After all favicons are fetched executes
69 history::FaviconData favicon);
75 // for each of them. After favicon is fetched top url is removed from list.
81 // Map that stores favicon per URL.
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/favicon/
FaviconHelper.java 5 package org.chromium.chrome.browser.favicon;
15 * You can request a favicon image by web page URL. Note that an instance of this class should be
23 public static final int FAVICON = 1 << 0;
34 * This method will be called when the result favicon is ready.
35 * @param image Favicon image.
36 * @param iconUrl Favicon image's icon url.
67 * Get Favicon bitmap for the requested arguments.
69 * @param pageUrl The target Page URL to get the favicon.
71 * @param desiredSizeInDip The size of the favicon in dip we want to get.
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2UriObserverTests.java 56 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888); local
58 favicon.compress(Bitmap.CompressFormat.PNG, 100, os);
61 values.put(Bookmarks.FAVICON, rawFavicon);
92 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888); local
94 favicon.compress(Bitmap.CompressFormat.PNG, 100, os);
97 values.put(History.FAVICON, rawFavicon);

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 9