HomeSort by relevance Sort by last modified time
    Searched defs:favicon (Results 26 - 50 of 68) sorted by null

12 3

  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model.h 47 // BookmarkNode contains information about a starred entry: title, URL, favicon,
86 // Returns the favicon's URL. Returns an empty URL if there is no favicon
141 // Called when the favicon becomes invalid.
144 // Sets the favicon's URL.
149 const gfx::Image& favicon() const { return favicon_; } function in class:BookmarkNode
178 // The favicon of this node.
181 // The URL of the node's favicon.
184 // The loading state of the favicon.
188 // favicon and the task is tracked by CancelabelTaskTracker
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_types.h 40 FAVICON,
119 // The favicon related to page if any.
121 set_value_explicitly(FAVICON);
124 const scoped_refptr<base::RefCountedMemory>& favicon() const { function in class:history::HistoryAndBookmarkRow
302 // This class wraps the sql statement and favicon column index in statement if
305 // Using favicon_index() to get the index of favicon; The value of that column
306 // is the Favicon ID, Client should call HistoryService::GetFavicon() to get the
317 // The favicon index in statement; -1 is returned if favicon is not in
android_provider_backend.cc 10 #include "chrome/browser/favicon/favicon_changed_details.h"
37 "android_cache_db.bookmark_cache.favicon_id AS favicon, "
338 scoped_ptr<FaviconChangedDetails> favicon(new FaviconChangedDetails);
351 row.is_value_set_explicitly(HistoryAndBookmarkRow::FAVICON))
352 favicon->urls.insert(i->url);
359 if (!favicon->urls.empty())
361 chrome::NOTIFICATION_FAVICON_CHANGED, favicon.release()));
394 scoped_ptr<FaviconChangedDetails> favicon; local
395 // No favicon should be changed if the thumbnail_db_ is not available.
396 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::FAVICON) &
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 35 // Spacing between the favicon and the text.
48 // Padding between the chrome button highlight border and the contents (favicon,
108 GdkPixbuf* favicon; member in struct:__anon8505::DragRepresentationData
112 DragRepresentationData(GdkPixbuf* favicon,
115 : favicon(favicon),
118 g_object_ref(favicon);
122 g_object_unref(favicon);
140 gdk_cairo_set_source_pixbuf(cr, data->favicon, 0, 0);
149 int text_x = gdk_pixbuf_get_width(data->favicon) + kBarButtonPadding
177 const gfx::Image& favicon = model->GetFavicon(node); local
    [all...]
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.cc 21 #include "chrome/browser/favicon/favicon_tab_helper.h"
22 #include "chrome/browser/favicon/favicon_util.h"
84 // Fill the tile logo with the dominant color of the favicon bitmap.
92 // Now paint a faded square for the favicon to go in.
99 // Now paint the favicon into the tile, leaving some room at the bottom for
153 // |favicon| can be a null image (i.e. favicon.isNull() can be true), in
157 const SkBitmap& favicon);
176 const SkBitmap& favicon)
179 favicon_(favicon) {}
380 SkBitmap favicon; local
    [all...]
  /external/chromium_org/chrome/utility/importer/
firefox_importer.cc 88 int64 favicon; member in struct:FirefoxImporter::BookmarkItem
119 // will also import favicons and we store favicon for a URL only if the URL
306 if (item->favicon)
307 favicon_map[item->favicon].insert(item->url);
518 item->favicon = 0;
553 item->favicon = s.ColumnInt64(6);
  /external/chromium/chrome/browser/chromeos/
wm_overview_controller.cc 168 WmOverviewFavicon* favicon; // Not owned member in struct:chromeos::BrowserListener::SnapshotNode
241 snapshots_[index].favicon->SetFavicon(
319 if (!snapshots_[i].favicon->IsVisible())
320 node.favicon->Show();
425 node.favicon = new WmOverviewFavicon;
426 node.favicon->Init(node.snapshot);
427 node.favicon->SetFavicon(browser_->GetTabContentsAt(index)->GetFavicon());
445 snapshots_[index].favicon->CloseNow();
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.h 174 // Repaint only the area of the tab that contains the favicon.
177 // Returns whether the Tab should display a favicon.
271 SkBitmap favicon; member in struct:TabRendererGtk::TabData
306 // Set the temporary offset for the favicon. This is used during animation.
322 // Returns the largest of the favicon, title text, and the close button.
345 // Returns the number of favicon-size elements that can fit in the tab's
409 // The offset used to animate the favicon location.
412 // The animation object used to swap the favicon with the sad tab icon.
415 // Set when the crashed favicon should be displayed.
tab_renderer_gtk.cc 211 // A custom animation subclass to manage the favicon crash animation.
300 data_.favicon = *app_icon;
302 data_.favicon = contents->GetFavicon();
306 // favicon. But the plumbing that would be necessary to do it right would
308 // don't care to custom-theme the favicon. Hopefully the default favicon
311 (data_.favicon.pixelRef() ==
316 // Loading state also involves whether we show the favicon, since that's where
323 // Force a layout, since the tab may have grown a favicon.
373 // The paint area is the favicon bounds, but we're painting into the gd
844 GdkPixbuf* favicon = GtkThemeService::GetDefaultFavicon(true); local
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
favicon_cache_unittest.cc 196 if (image_specifics.favicon_web().favicon() != test_data.image_16 ||
202 return testing::AssertionFailure() << "Missing 16p favicon.";
205 if (image_specifics.favicon_web_32().favicon() != test_data.image_32 ||
211 return testing::AssertionFailure() << "Missing 32p favicon.";
214 if (image_specifics.favicon_touch_64().favicon() != test_data.image_64 ||
220 return testing::AssertionFailure() << "Missing 64p favicon.";
292 // Finish an outstanding favicon load for the icon described in |test_data|.
345 scoped_refptr<base::RefCountedMemory> favicon; local
346 if (!cache_.GetSyncedFaviconForPageURL(gurl, &favicon))
347 return testing::AssertionFailure() << "Favicon is missing."
571 TestFaviconData favicon = BuildFaviconData(i); local
675 TestFaviconData favicon = BuildFaviconData(i); local
756 TestFaviconData favicon = BuildFaviconData(i); local
1154 TestFaviconData favicon = BuildFaviconData(i+kMaxSyncFavicons); local
    [all...]
session_model_associator.cc 18 #include "chrome/browser/favicon/favicon_service_factory.h"
456 // Load the old specifics and copy over the favicon data if needed.
457 // TODO(zea): remove this once favicon sync is enabled as a separate type.
458 tab_s.set_favicon(specifics.tab().favicon());
470 // Trigger the favicon load if needed. We do this outside the write
539 // TODO(zea): consider a separate container for tabs with outstanding favicon
816 // If a favicon or favicon urls are present, load them into the in-memory
817 // favicon cache.
947 const std::string& favicon = tab.favicon(); local
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_session_unittest.cc 1222 scoped_refptr<base::RefCountedMemory> favicon; local
    [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/gtk/tabs/
tab_renderer_gtk.h 176 // Repaint only the area of the tab that contains the favicon.
179 // Returns whether the Tab should display a favicon.
255 SkBitmap favicon; member in struct:TabRendererGtk::TabData
283 // Set the temporary offset for the favicon. This is used during animation.
289 // Sets up an overlay for the favicon and starts a throbbing animation
303 // Returns the largest of the favicon, title text, and the close button.
331 // Returns the number of favicon-size elements that can fit in the tab's
394 // The offset used to animate the favicon location.
397 // The animation object used to swap the favicon with the sad tab icon.
400 // Set when the crashed favicon should be displayed
    [all...]
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc 711 gfx::Image favicon; local
714 model()->GetDataForURLExport(&url, &title, &favicon);
715 button_drag_utils::SetURLAndDragImage(url, title, favicon.AsImageSkia(),
omnibox_view_win.cc 2682 gfx::Image favicon; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 62 BrowserContract.Bookmarks.FAVICON,
249 views.setImageViewResource(R.id.favicon, R.drawable.ic_bookmark_widget_bookmark_holo_dark);
255 Bitmap thumbnail = null, favicon = null; local
268 favicon = BitmapFactory.decodeByteArray(
270 views.setImageViewBitmap(R.id.favicon, favicon);
272 views.setImageViewResource(R.id.favicon,
  /packages/apps/Browser/src/com/android/browser/
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,
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc 2469 SkBitmap favicon; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 1084 SkBitmap favicon = GetFavicon(); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 145 BookmarkColumns.FAVICON, BookmarkColumns.CREATED};
659 private void populateNodeImages(BookmarkNode node, boolean favicon, boolean thumbnail) {
662 if (favicon) {
814 public byte[] favicon() { method in class:ChromeBrowserProvider.BookmarkNode
1160 byte[] favicon; field in class:ChromeBrowserProvider.BookmarkRow
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend_unittest.cc 291 // Returns the favicon bitmaps for |icon_id| sorted by pixel size in
292 // ascending order. Returns true if there is at least one favicon bitmap.
302 // Returns true if there is exactly one favicon bitmap associated to
303 // |favicon_id|. If true, returns favicon bitmap in output parameter.
462 GURL favicon_url1("http://www.google.com/favicon.ico");
463 GURL favicon_url2("http://news.google.com/favicon.ico");
465 chrome::FAVICON);
467 chrome::FAVICON);
566 // We should have a favicon and favicon bitmaps for the first URL only. W
867 ImportedFaviconUsage favicon; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 36 #include "chrome/browser/favicon/favicon_tab_helper.h"
1414 gfx::Image favicon = GetFavicon(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.cc 1405 const gfx::Image& favicon = model_->GetFavicon(node); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_view.cc 23 #include "chrome/browser/favicon/favicon_tab_helper.h"
1373 gfx::ImageSkia favicon = favicon_tab_helper->GetFavicon().AsImageSkia(); local
    [all...]

Completed in 936 milliseconds

12 3