/external/chromium_org/chrome/browser/ui/ash/launcher/ |
shell_window_launcher_item_controller.cc | 204 scoped_ptr<gfx::Image> image(shell_window->GetAppListIcon()); 207 image.get(), // Will be copied
|
/external/chromium_org/chrome/browser/ui/gtk/ |
browser_actions_toolbar_gtk.cc | 49 #include "ui/gfx/image/image.h" 50 #include "ui/gfx/image/image_skia_operations.h" 230 gfx::Image image = icon_factory_.GetIcon(tab_id); local 231 if (!image.IsEmpty()) { 233 SetImage(image); 235 SetImage(gfx::Image(gfx::ImageSkiaOperations::CreateTransparentImage( 236 image.AsImageSkia(), .25))); 243 gfx::Image GetIcon() [all...] |
browser_titlebar.cc | 58 #include "ui/gfx/image/image.h" 270 // window. Only one of them holds the spy image. 277 // ||+- TabStripGtk -++- Image ----------------++- Label --------------+|| 378 // We use the app logo as a placeholder image so the title doesn't jump 622 gfx::Image icon = browser_window_->browser()->GetCurrentPageIcon(); 651 gfx::Image icon = browser_window_->browser()->GetCurrentPageIcon(); 806 gfx::Image avatar_image = [all...] |
menu_gtk.cc | 27 #include "ui/gfx/image/image.h" 72 G_OBJECT(button), "button-image-idr")); 86 g_object_set_data(G_OBJECT(button), "button-image-idr", 331 const gfx::Image& icon) { 423 GtkWidget* image) { 426 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), image); local 431 const gfx::Image& icon) { 454 gfx::Image icon; 932 gfx::Image icon [all...] |
/external/chromium_org/chrome/browser/ui/gtk/infobars/ |
extension_infobar_gtk.cc | 29 #include "ui/gfx/image/image.h" 106 // Start loading the image for the menu button. 112 // Load image asynchronously, calling back OnImageLoaded. 153 void ExtensionInfoBarGtk::OnImageLoaded(const gfx::Image& image) { 160 if (image.IsEmpty()) 163 icon = image.ToImageSkia();
|
/external/chromium_org/chrome/browser/ui/gtk/panels/ |
panel_stack_window_gtk.cc | 242 gfx::Image app_icon = panel->app_icon();
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
gtk2_ui.cc | 32 #include "ui/gfx/image/image.h" 60 // The size of the rendered toolbar image. 155 // The image resources that will be tinted by the 'button' tint value. 332 gfx::Image Gtk2UI::GetThemeImageNamed(int id) const { 339 gfx::Image image = gfx::Image( local 341 gtk_images_[id] = image; 342 return image; [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
global_error_bubble_view.cc | 14 #include "ui/gfx/image/image.h" 68 // Compensate for built-in vertical padding in the anchor view's image. 73 gfx::Image image = error_->GetBubbleViewIcon(); local 74 CHECK(!image.IsEmpty()); 76 image_view->SetImage(image.ToImageSkia());
|
menu_model_adapter_test.cc | 70 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE {
|
script_bubble_view.cc | 59 // Compensate for built-in vertical padding in the anchor view's image. 85 extensions::ExtensionResource image = local 90 extension, image, gfx::Size(size, size), 134 // Add a column set for the extension image plus name. 190 const gfx::Image& image) { 191 if (!image.IsEmpty()) { 192 const gfx::ImageSkia* image_skia = image.ToImageSkia();
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
extension_infobar.cc | 22 #include "ui/gfx/image/canvas_image_source.h" 23 #include "ui/gfx/image/image.h" 70 // The margin between the extension icon and the drop-down arrow image. 134 // Wait until the icon image is loaded before showing it. 188 void ExtensionInfoBar::OnImageLoaded(const gfx::Image& image) { 195 if (image.IsEmpty()) 198 icon = image.ToImageSkia();
|
/external/chromium_org/chrome/browser/ui/views/location_bar/ |
page_action_image_view.cc | 29 #include "ui/gfx/image/image.h" 231 // Set the image. 232 gfx::Image icon = icon_factory_->GetIcon(current_tab_id_);
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
network_dropdown.cc | 19 #include "ui/gfx/image/image.h" 20 #include "ui/gfx/image/image_skia.h" 90 gfx::Image icon;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSGradientValue.h | 66 PassRefPtr<Image> image(RenderObject*, const IntSize&);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMImplementation.cpp | 51 #include "core/platform/graphics/Image.h" 122 addString(svgFeatures, "Image"); 342 // PDF is one image type for which a plugin can override built-in support. 343 // We do not want QuickTime to take over all image types, obviously. 346 if (Image::supportsType(type)) 360 if (type == "image/svg+xml")
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLPlugInImageElement.cpp | 36 #include "core/platform/graphics/Image.h" 96 return Image::supportsType(m_serviceType); 138 RenderImage* image = new RenderImage(this); local 139 image->setImageResource(RenderImageResource::create()); 140 return image; 283 if (document()->frame()->page() && (mimeType == "image/tiff" || mimeType == "image/tif" || mimeType == "image/x-tiff")) {
|
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/ |
Resource.h | 62 Image,
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/ |
PasteboardChromium.cpp | 47 #include "core/platform/graphics/Image.h" 134 Image* image = cachedImage->imageForRenderer(renderer); 135 ASSERT(image); 137 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame(); 141 // If the image is wrapped in a link, |url| points to the target of the 142 // link. This isn't useful to us, so get the actual image URL.
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
GraphicsContext3D.h | 31 #include "core/platform/graphics/Image.h" 63 class Image; 465 // Computes the image size in bytes. If paddingInBytes is not null, padding 478 // Attempt to enumerate all possible native image formats to 739 ImageExtractor(Image*, ImageHtmlDomSource, bool premultiplyAlpha, bool ignoreGammaAndColorProfile); 752 // Extract the image and keeps track of its status, such as width, height, Source Alignment, format and AlphaOp etc. 758 Image* m_image; 771 // Packs the contents of the given Image which is passed in |pixels| into the passed Vector 774 static bool packImageData(Image*, const void* pixels, GC3Denum format, GC3Denum type, bool flipY, AlphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/ |
FEComponentTransfer.cpp | 189 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore); 190 RefPtr<NativeImageSkia> nativeImage = image->nativeImageForCurrentFrame();
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
ScrollbarThemeMac.mm | 335 // Load the linen pattern image used for overhang drawing. 336 RefPtr<Image> patternImage = Image::loadPlatformResource("overhangPattern");
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGImage.cpp | 60 SVGImageElement* image = toSVGImageElement(node()); local 64 SVGLengthContext lengthContext(image); 65 m_objectBoundingBox = FloatRect(image->xCurrentValue().value(lengthContext), image->yCurrentValue().value(lengthContext), image->widthCurrentValue().value(lengthContext), image->heightCurrentValue().value(lengthContext)); 68 // by setting the image's container size to its intrinsic size. 70 if (image->preserveAspectRatioCurrentValue().align() == SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE) { 158 RefPtr<Image> image = m_imageResource->image() local [all...] |
RenderSVGResourcePattern.cpp | 81 // Compute all necessary transformations to build the tile image & the pattern. 99 // Build tile image. 104 RefPtr<Image> copiedImage = tileImage->copyImage(CopyBackingStore); 130 // failures in the SVG image cache for example). To avoid having our PatternData deleted by 250 // The image buffer represents the final rendered size, so the content has to be scaled (to avoid pixelation). 254 // Apply tile image transformations.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
test_parser_unittest.py | 120 background-image: url("../../support/some-image.png") 124 <div><img src="../support/black96x96.png" alt="Image download support must be enabled" /></div>
|
/external/chromium_org/third_party/lcov/bin/ |
genpng | 22 # This script creates an overview PNG image of a source code file by 139 Create an overview image for a given source code file of either plain text 145 -w, --width WIDTH Set width of output image to WIDTH pixel 146 -o, --output-filename FILENAME Write image to FILENAME 224 # The output image will be made up of one pixel per character of source, 226 # image width. TAB_SIZE specifies the number of spaces to use as replacement 235 my $overview_width = shift(@_); # Imagewidth for image 239 my $overview; # Source code overview image data 261 # Create image 262 $overview = new GD::Image($overview_width, $height [all...] |