Searched refs:icon (Results 76 - 100 of 499) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/resources/extensions/
H A Dnotifications_test_util.js32 icon: { width: 0, height: 0 },
/external/chromium_org/third_party/polymer/components/core-item/
H A Dcore-item.css25 html /deep/ core-item::shadow core-icon {
29 html /deep/ core-item.font-scalable::shadow core-icon {
/external/chromium_org/third_party/polymer/components-chromium/core-item/
H A Dcore-item.css25 html /deep/ core-item::shadow core-icon {
29 html /deep/ core-item.font-scalable::shadow core-icon {
/external/chromium_org/ash/frame/caption_buttons/
H A Dframe_caption_button.h31 FrameCaptionButton(views::ButtonListener* listener, CaptionButtonIcon icon);
38 void SetImages(CaptionButtonIcon icon,
61 CaptionButtonIcon icon() const { function in class:ash::FrameCaptionButton
70 // Returns the icon image to paint based on |paint_as_active_|.
78 // The button's current icon.
97 // The icon image to crossfade from.
/external/chromium_org/ash/system/tray/media_security/
H A Dmulti_profile_media_tray_item.cc28 views::ImageView* icon = new views::ImageView; local
30 icon->SetImage(
32 AddChildView(icon);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
H A DAppData.java64 * Returns the URL where the app icon can be retrieved from.
65 * @return The URL to grab the icon from.
72 * Returns the Drawable depicting the app's icon.
73 * @return The Drawable to use as the app icon.
75 Drawable icon() { method in class:AppData
116 * @param imageUrl URL where the icon is located.
133 * Sets the icon used to depict the app.
134 * @param Drawable App icon in Drawable form.
136 void setIcon(Drawable icon) { argument
137 mIcon = icon;
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item_views.cc32 gfx::Image* icon,
42 icon ? icon->AsImageSkia() : gfx::ImageSkia(),
31 DragDownloadItem(const content::DownloadItem* download, gfx::Image* icon, gfx::NativeView view) argument
/external/chromium_org/chrome/browser/status_icons/
H A Dstatus_tray_unittest.cc18 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
47 // Make sure that removing an icon removes it from the list.
52 StatusIcon* icon = tray.CreateStatusIcon( local
55 tray.RemoveStatusIcon(icon);
H A Dstatus_icon_menu_model.cc25 gfx::Image icon; member in struct:StatusIconMenuModel::ItemState
80 int command_id, const gfx::Image& icon) {
82 item_states_[command_id].icon = icon;
151 if (iter != item_states_.end() && !iter->second.icon.IsEmpty()) {
152 *image_skia = iter->second.icon;
79 ChangeIconForCommandId( int command_id, const gfx::Image& icon) argument
/external/chromium_org/ui/message_center/
H A Dnotifier_settings.cc64 NotifierGroup::NotifierGroup(const gfx::Image& icon, argument
68 : icon(icon), name(name), login_info(login_info), index(index) {}
H A Dnotification.cc55 const gfx::Image& icon,
64 icon_(icon),
118 void Notification::SetButtonIcon(size_t index, const gfx::Image& icon) { argument
121 optional_fields_.buttons[index].icon = icon;
134 const gfx::Image& icon,
143 icon,
51 Notification(NotificationType type, const std::string& id, const base::string16& title, const base::string16& message, const gfx::Image& icon, const base::string16& display_source, const NotifierId& notifier_id, const RichNotificationData& optional_fields, NotificationDelegate* delegate) argument
130 CreateSystemNotification( const std::string& notification_id, const base::string16& title, const base::string16& message, const gfx::Image& icon, const std::string& system_component_id, const base::Closure& click_callback) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotification.java23 public void __constructor__(int icon, CharSequence tickerText, long when) { argument
24 realNotification.icon = icon;
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_data.h41 // and icon.
73 const gfx::ImageSkia& icon() const { return icon_; } function in class:chromeos::KioskAppData
94 // Helper to set the cached data using a SkBitmap icon.
95 void SetCache(const std::string& name, const SkBitmap& icon);
98 void OnExtensionIconLoaded(const gfx::Image& icon);
102 const gfx::ImageSkia& icon);
106 void OnWebstoreParseSuccess(const SkBitmap& icon);
/external/chromium_org/chrome/browser/chromeos/profiles/
H A Dprofile_list_chromeos.cc56 gfx::Image icon = gfx::Image((*it)->GetImage()); local
57 if (!switches::IsNewProfileManagement() && !icon.IsEmpty()) {
59 icon = profiles::GetAvatarIconForMenu(icon, true);
62 AvatarMenu::Item* item = new AvatarMenu::Item(i, i, icon);
/external/chromium_org/chrome/browser/ui/views/
H A Dvalidation_message_bubble_delegate.cc32 views::ImageView* icon = new views::ImageView(); local
33 icon->SetImage(*bundle.GetImageSkiaNamed(IDR_INPUT_ALERT));
34 gfx::Size size = icon->GetPreferredSize();
35 icon->SetBounds(kPadding, kPadding, size.width(), size.height());
36 AddChildView(icon);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
H A Dsearch_box.js110 var icon = document.createElement('div');
111 icon.className = 'detail-icon';
117 icon.setAttribute('search-icon', '');
122 icon.setAttribute('file-type-icon', iconType);
127 li.appendChild(icon);
/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc27 const gfx::ImageSkia& icon,
33 SetDragImage(url, title, icon, press_pt, data, widget);
38 const gfx::ImageSkia& icon,
55 if (icon.isNull()) {
60 button.SetImage(views::Button::STATE_NORMAL, icon);
25 SetURLAndDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
36 SetDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
/external/chromium_org/ui/webui/resources/css/
H A Dtree.css24 .expand-icon {
40 html[dir=rtl] .expand-icon {
44 .tree-item[expanded] > .tree-row > .expand-icon {
50 .tree-row .expand-icon {
54 .tree-row[may-have-children] .expand-icon {
58 .tree-row[has-children=false] .expand-icon {
129 tree[icon-visibility=hidden] .tree-label {
134 tree[icon-visibility=parent] .tree-label,
135 tree[icon-visibility=parent] .tree-row[has-children=false] > .tree-label {
/external/chromium_org/chrome/browser/notifications/
H A Dnotification_conversion_helper.cc19 // Extract required fields: type, title, message, and icon.
23 if (!notification.icon().IsEmpty()) {
24 scoped_ptr<extensions::api::notifications::NotificationBitmap> icon(
26 GfxImageToNotificationBitmap(&notification.icon(), icon.get());
27 options->icon_bitmap = icon.Pass();
66 if (!rich_data->buttons[i].icon.IsEmpty()) {
67 scoped_ptr<extensions::api::notifications::NotificationBitmap> icon(
69 GfxImageToNotificationBitmap(&rich_data->buttons[i].icon, icon
[all...]
/external/chromium_org/ui/gfx/win/
H A Dwindow_impl.cc35 HICON icon; member in struct:gfx::ClassInfo
37 ClassInfo(int style, HICON icon) argument
39 icon(icon) {}
43 return (other.style == style && other.icon == icon);
137 class_info.icon,
138 class_info.icon,
307 HICON icon = GetDefaultWindowIcon(); local
308 ClassInfo class_info(initial_class_style(), icon); local
[all...]
/external/chromium_org/chrome/browser/chromeos/status/
H A Dnetwork_menu.cc79 gfx::ImageSkia icon,
84 icon(icon),
91 gfx::ImageSkia icon,
96 icon(icon),
103 gfx::ImageSkia icon; member in struct:chromeos::NetworkMenuModel::MenuItem
136 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE;
274 bool NetworkMenuModel::GetIconAt(int index, gfx::Image* icon) { argument
275 if (!menu_items_[index].icon
77 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon, const std::string& service_path, int flags) argument
89 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon, NetworkMenuModel* sub_menu_model, int flags) argument
368 const gfx::ImageSkia icon = ui::network_icon::GetImageForNetwork( local
408 const gfx::ImageSkia icon = ui::network_icon::GetImageForNetwork( local
449 const gfx::ImageSkia icon = ui::network_icon::GetImageForNetwork( local
460 const gfx::ImageSkia icon = local
510 const gfx::ImageSkia icon = ui::network_icon::GetImageForConnectedNetwork( local
568 gfx::ImageSkia icon; local
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dfileicon_source.cc28 // The path used in internal URLs to file icon data.
31 // URL parameter specifying icon size.
100 gfx::Image* icon = im->LookupIconFromFilepath(path, icon_size); local
102 if (icon) {
105 icon->ToImageSkia()->GetRepresentation(scale_factor).sk_bitmap(),
149 gfx::Image* icon) {
150 if (icon) {
153 icon->ToImageSkia()->GetRepresentation(
160 // TODO(glen): send a dummy icon.
148 OnFileIconDataAvailable(const IconRequestDetails& details, gfx::Image* icon) argument
/external/chromium_org/ui/views/controls/menu/
H A Dmenu.cc104 const gfx::ImageSkia& icon) {
105 return AddSubMenuWithIcon(-1, item_id, label, icon);
132 const gfx::ImageSkia& icon) {
133 AddMenuItemWithIcon(-1, item_id, label, icon);
139 const gfx::ImageSkia& icon) {
140 AddMenuItemInternal(index, item_id, label, icon, Menu::NORMAL);
102 AppendSubMenuWithIcon(int item_id, const base::string16& label, const gfx::ImageSkia& icon) argument
130 AppendMenuItemWithIcon(int item_id, const base::string16& label, const gfx::ImageSkia& icon) argument
136 AddMenuItemWithIcon(int index, int item_id, const base::string16& label, const gfx::ImageSkia& icon) argument
H A Dmenu.h55 // The icon shown for the menu item.
77 // Whether an item has an icon.
102 // Returns an empty icon.
167 // Append a submenu with an icon to this menu
169 // Unless the icon is empty, calling this function forces the Menu class
173 const gfx::ImageSkia& icon);
177 const gfx::ImageSkia& icon) = 0;
195 // Appends a menu item with an icon. This is for the menu item which
196 // needs an icon. Calling this function forces the Menu class to draw
200 const gfx::ImageSkia& icon);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
H A Dpackaging.properties20 root.linux.motif.x86=eclipse,libcairo-swt.so,libXm.so.2,about_files/,about.html,icon.xpm
21 root.linux.gtk.x86=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
22 root.linux.gtk.x86_64=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm

Completed in 932 milliseconds

1234567891011>>