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

1 2 3 4 5

  /external/chromium/chrome/common/
favicon_url.h 11 // The favicon url from the render.
16 FAVICON = 1 << 0,
  /external/chromium_org/content/public/common/
favicon_url.h 13 // The favicon url from the render.
18 FAVICON = 1 << 0,
  /external/chromium_org/chrome/common/favicon/
favicon_types.h 9 #include "chrome/common/favicon/favicon_types.h"
20 // The values of the IconTypes are used to select the priority in which favicon
25 FAVICON = 1 << 0,
39 // The URL of the favicon which contains all of the image representations of
47 // Defines a favicon bitmap which best matches the desired DIP size and one of
65 // The URL of the containing favicon.
68 // The icon type of the containing 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.
42 chrome::FAVICON,
43 row.favicon(),
53 // Remove all icon mappings to favicons of type FAVICON.
56 i->url, chrome::FAVICON, &icon_mappings);
69 // As we update the favicon, Let's remove unused favicons if any.
101 if (!row->is_value_set_explicitly(HistoryAndBookmarkRow::FAVICON) ||
111 chrome::FAVICON,
112 row->favicon(),
    [all...]
android_history_types_unittest.cc 24 EXPECT_EQ(HistoryAndBookmarkRow::FAVICON,
25 HistoryAndBookmarkRow::GetColumnID("favicon"));
  /external/chromium_org/chrome/browser/ui/webui/suggestions_internals/
suggestions_internals_ui.cc 31 profile, new FaviconSource(profile, FaviconSource::FAVICON));
  /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);
  /external/chromium_org/chrome/browser/ui/webui/
favicon_source.cc 10 #include "chrome/browser/favicon/favicon_service_factory.h"
17 #include "chrome/common/favicon/favicon_url_parser.h"
48 icon_types_(type == FAVICON ? chrome::FAVICON :
50 chrome::FAVICON) {
57 return icon_types_ == chrome::FAVICON ?
87 chrome::FAVICON,
143 // If the favicon is not available, try to use the synced favicon.
favicon_source.h 13 #include "chrome/browser/favicon/favicon_service.h"
24 // chrome://favicon/size&scalefactor/urlmodifier/url
30 // Specifies the page URL of the requested favicon. If the 'urlmodifier'
31 // parameter is 'iconurl', the URL refers to the URL of the favicon image
35 // 'largest': Specifies that the largest available favicon is requested.
36 // Example: chrome://favicon/largest/http://www.google.com/
38 // Specifies the requested favicon's size in DIP (aa) and the requested
39 // favicon's scale factor. (b).
41 // If the parameter is unspecified, the requested favicon's size defaults
43 // Example: chrome://favicon/size/16@2x/http://www.google.com
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_handler_unittest.cc 6 #include "chrome/browser/favicon/favicon_handler.h"
7 #include "chrome/browser/favicon/favicon_service_factory.h"
70 SetFaviconBitmapResult(icon_url, chrome::FAVICON, false /* expired */,
241 // The methods to access favicon internal.
374 const GURL icon_url("http://www.google.com/favicon");
380 &delegate, FaviconHandler::FAVICON);
388 EXPECT_EQ(chrome::FAVICON, history_handler->icon_type_);
398 // Simulates update favicon url.
400 urls.push_back(FaviconURL(icon_url, FaviconURL::FAVICON));
407 ASSERT_EQ(FaviconURL::FAVICON, helper.current_candidate()->icon_type)
    [all...]
favicon_handler.cc 5 #include "chrome/browser/favicon/favicon_handler.h"
16 #include "chrome/browser/favicon/favicon_service_factory.h"
17 #include "chrome/browser/favicon/favicon_util.h"
40 case FaviconURL::FAVICON:
41 return chrome::FAVICON;
59 case chrome::FAVICON:
132 // Any favicon size is good if the desired size is 0.
136 // Check if the favicon for at least one of the scale factors is missing.
218 icon_types_(icon_type == FAVICON ? chrome::FAVICON
    [all...]
  /external/chromium/chrome/browser/
favicon_helper_unittest.cc 172 // The methods to access favicon internal.
281 const GURL icon_url("http://www.google.com/favicon");
283 TestFaviconHelper helper(page_url, contents(), FaviconHelper::FAVICON);
291 EXPECT_EQ(history::FAVICON, history_handler->icon_type_);
295 history_handler->favicon_data_.icon_type = history::FAVICON;
305 EXPECT_TRUE(helper.GetEntry()->favicon().is_valid());
306 EXPECT_EQ(icon_url, helper.GetEntry()->favicon().url());
308 // Simulates update favicon url.
310 urls.push_back(FaviconURL(icon_url, FaviconURL::FAVICON));
317 ASSERT_EQ(FaviconURL::FAVICON, helper.current_candidate()->icon_type)
    [all...]
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...]
  /external/chromium/webkit/glue/
resource_type.h 26 FAVICON, // a favicon
  /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.
  /external/chromium_org/webkit/common/
resource_type.cc 40 return ResourceType::FAVICON;
resource_type.h 30 FAVICON, // a favicon
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 144 * The favicon of the bookmark, may be NULL.
148 public static final String FAVICON = "favicon";
  /external/chromium/chrome/browser/history/
history_backend_unittest.cc 217 GURL favicon_url1("http://www.google.com/favicon.ico");
218 GURL favicon_url2("http://news.google.com/favicon.ico");
220 FAVICON);
222 FAVICON);
323 // We should have a favicon for the first URL only. We look them up by favicon
326 GetFaviconIDForFaviconURL(favicon_url1, FAVICON, NULL);
329 GetFaviconIDForFaviconURL(favicon_url2, FAVICON, NULL);
330 EXPECT_FALSE(out_favicon2) << "Favicon not deleted";
332 // The remaining URL should still reference the same favicon, even if it
553 history::ImportedFaviconUsage favicon; local
    [all...]
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/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...]
thumbnail_database_unittest.cc 121 scoped_refptr<base::RefCountedBytes> favicon(new base::RefCountedBytes(data));
124 chrome::FaviconID icon_id = db.AddFavicon(url, chrome::FAVICON);
126 FaviconBitmapID bitmap1_id = db.AddFaviconBitmap(icon_id, favicon, time,
128 FaviconBitmapID bitmap2_id = db.AddFaviconBitmap(icon_id, favicon, time,
138 EXPECT_EQ(chrome::FAVICON, icon_type_out);
147 // Favicon bitmaps do not need to be in particular order.
181 scoped_refptr<base::RefCountedBytes> favicon(new base::RefCountedBytes(data));
187 favicon,
235 scoped_refptr<base::RefCountedBytes> favicon(new base::RefCountedBytes(data));
241 db.AddFaviconBitmap(id, favicon, time, gfx::Size())
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ProviderBookmarksUriTest.java 48 values.put(BookmarkColumns.FAVICON, icon);
71 values.put(BookmarkColumns.FAVICON, BookmarkUtils.getIcon(ICON_PATH));
88 index = cursor.getColumnIndex(BookmarkColumns.FAVICON);
126 "url = ? AND date = ? AND visits = ? AND bookmark = ? AND favicon IS NOT NULL",
140 index = cursor.getColumnIndex(BookmarkColumns.FAVICON);
154 "url = ? AND date = ? AND visits = ? AND bookmark = ? AND favicon IS NULL",
168 index = cursor.getColumnIndex(BookmarkColumns.FAVICON);
203 values.putNull(BookmarkColumns.FAVICON);
208 getContentResolver().update(uri, values, BookmarkColumns.FAVICON + " IS NOT NULL AND " +
223 index = cursor.getColumnIndex(BookmarkColumns.FAVICON);
    [all...]
  /external/chromium_org/android_webview/browser/
icon_helper.cc 58 case content::FaviconURL::FAVICON:
61 true, // Is a favicon
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 42 Bookmarks.FAVICON, // 3

Completed in 1412 milliseconds

1 2 3 4 5