/external/chromium_org/third_party/WebKit/Source/core/dom/ |
IconURL.cpp | 32 #include "core/dom/IconURL.h" 36 IconURL IconURL::defaultIconURL(const KURL& url, IconType type) 38 IconURL result(url, emptyString(), emptyString(), type); 43 bool operator==(const IconURL& lhs, const IconURL& rhs)
|
IconURL.h | 51 struct IconURL { 58 IconURL() 64 IconURL(const KURL& url, const String& sizes, const String& mimeType, IconType type) 73 static IconURL defaultIconURL(const KURL&, IconType); 76 bool operator==(const IconURL&, const IconURL&); 78 typedef Vector<IconURL, ICON_COUNT> IconURLs;
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebIconURL.h | 35 #include "core/dom/IconURL.h" 66 const WebURL& iconURL() const 72 WebIconURL(const WebCore::IconURL& iconURL) 73 : m_iconType(static_cast<Type>(iconURL.m_iconType)) 74 , m_iconURL(iconURL.m_iconURL)
|
/external/chromium_org/chrome/browser/resources/options/ |
profiles_icon_grid.js | 12 * @param {Object} iconURL The profile icon URL. 16 function ProfilesIconGridItem(iconURL) { 18 el.iconURL_ = iconURL; 59 createItem: function(iconURL) { 60 return new ProfilesIconGridItem(iconURL);
|
manage_profile_overlay.js | 176 * iconURL: "chrome://path/to/icon/image", 187 this.iconGridSelectedURL_ = profileInfo.iconURL; 190 $(mode + '-profile-icon-grid').selectedItem = profileInfo.iconURL; 213 $(iconGrid).selectedItem = this.profileInfo_.iconURL; 227 * iconURL: "chrome://path/to/icon/image", 324 var iconURL = $('manage-profile-icon-grid').selectedItem; 327 [this.profileInfo_.filePath, iconURL, name]); 347 var iconUrl = $('create-profile-icon-grid').selectedItem; 360 [name, iconUrl, createShortcut, 372 var iconURL = $(mode + '-profile-icon-grid').selectedItem [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
IconController.cpp | 39 #include "core/dom/IconURL.h" 59 IconURL IconController::iconURL(IconType iconType) const 61 IconURL result; 62 const Vector<IconURL>& iconURLs = m_frame->document()->iconURLs(iconType); 63 Vector<IconURL>::const_iterator iter(iconURLs.begin()); 87 const Vector<IconURL>& allIconURLs = m_frame->document()->iconURLs(iconTypesMask); 88 for (Vector<IconURL>::const_iterator iter = allIconURLs.begin(); iter != allIconURLs.end(); ++iter) { 104 IconURL faviconURL = iconURL(iconType) [all...] |
IconController.h | 34 #include "core/dom/IconURL.h" 50 IconURL iconURL(IconType) const; 54 IconURL defaultURL(IconType);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
notifications_custom_bindings.js | 29 // |iconUrl| might be optional for notification updates. 31 if (notification_details.iconUrl) { 33 path: notification_details.iconUrl, 55 if (button_list[i].iconUrl) { 57 path: button_list[i].iconUrl,
|
/external/chromium_org/chrome/browser/extensions/api/notifications/ |
notifications_apitest.cc | 60 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 87 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 120 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 192 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 218 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 226 " \"iconUrl\":\"http://www.google.com/logos/2012/\"" 229 " \"title\": \"Down\"" // note: no iconUrl 256 "\"iconUrl\": \"an/image/that/does/not/exist.png\"," 266 // Error case: missing iconUrl property. 301 "\"iconUrl\": \"an/image/that/does/not/exist.png\", [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ExtensionPanel.js | 99 * @param {string} iconURL 103 WebInspector.ExtensionButton = function(id, iconURL, tooltip, disabled) 109 this.update(iconURL, tooltip, disabled); 114 * @param {string} iconURL 118 update: function(iconURL, tooltip, disabled) 120 if (typeof iconURL === "string") 121 this.element.style.backgroundImage = "url(" + iconURL + ")";
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
notifications.html | 30 as well as an <code>iconUrl</code>, which is a link to a small icon that 48 iconUrl: "url_to_small_icon" 62 iconUrl: "url_to_small_icon",
|
/external/chromium_org/chrome/browser/resources/chromeos/app_launch/ |
app_launch.js | 25 $('header').style.backgroundImage = 'url(' + app.iconURL + ')';
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
menu_item.js | 48 var iconUrl; 49 if ((iconUrl = this.getAttribute('icon'))) 50 this.iconUrl = iconUrl; 110 get iconUrl() { 113 set iconUrl(url) {
|
menu.js | 66 if (item.iconUrl) 67 menuItem.iconUrl = item.iconUrl;
|
/external/chromium_org/chrome/browser/ui/webui/ |
favicon_source.h | 31 // parameter is 'iconurl', the URL refers to the URL of the favicon image 45 // Values: ['iconurl', 'origin'] 46 // 'iconurl': Specifies that the url parameter refers to the URL of 49 // Example: chrome://favicon/iconurl/http://www.google.com/favicon.ico
|
/external/chromium_org/chrome/common/favicon/ |
favicon_url_parser.h | 15 // Whether the URL has the "iconurl" parameter.
|
/external/chromium_org/chrome/renderer/searchbox/ |
searchbox_unittest.cc | 108 GURL("chrome-search://favicon/iconurl/1/2"), 109 "iconurl/", 145 GURL("chrome-search://favicon/iconurl/1/2"), 146 "iconurl/",
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/favicon/ |
FaviconHelper.java | 36 * @param iconUrl Favicon image's icon url. 39 public void onFaviconAvailable(Bitmap image, String iconUrl);
|
/external/chromium_org/chrome/browser/resources/file_manager/js/ |
combobutton.js | 69 } else if (defaultItem.iconUrl) { 71 'url(' + defaultItem.iconUrl + ')';
|
/external/chromium_org/chrome/common/extensions/api/ |
notifications.idl | 38 DOMString? iconUrl; 47 DOMString? iconUrl;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebNotification.cpp | 80 WebURL WebNotification::iconURL() const 82 return m_private->iconURL();
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
LinkRelAttribute.h | 35 #include "core/dom/IconURL.h"
|
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
NotificationCenter.idl | 37 [MeasureAs=LegacyTextNotifications, ActivityLog=Access, RaisesException] Notification createNotification(DOMString iconUrl, DOMString title, DOMString body);
|
/external/chromium_org/chrome/browser/ui/webui/extensions/chromeos/ |
kiosk_apps_browsertest.js | 29 iconURL: '', 36 iconURL: '', 141 iconURL: '',
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
manage_profile_handler.h | 48 // |args| is of the form: [ {string} iconURL ] 53 // { "name": profileName, "iconURL": iconURL }
|