Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 267 intrinsicHeight = Length(intrinsicRatio.height(), Fixed); | 267 intrinsicHeight = Length(intrinsicRatio.height(), Fixed); |
| 268 } | 268 } |
| 269 | 269 |
| 270 PassRefPtr<Image> Image::imageForDefaultFrame() | 270 PassRefPtr<Image> Image::imageForDefaultFrame() |
| 271 { | 271 { |
| 272 RefPtr<Image> image(this); | 272 RefPtr<Image> image(this); |
| 273 | 273 |
| 274 return image.release(); | 274 return image.release(); |
| 275 } | 275 } |
| 276 | 276 |
| 277 bool Image::isTextureBacked() | |
| 278 { | |
| 279 return imageForCurrentFrame()->isTextureBacked(); | |
|
pdr.
2015/11/11 06:19:45
SVGImage::imageForCurrentFrame actually draws a ne
Justin Novosad
2015/11/11 15:19:45
This will never get called on an SVGImage (which i
| |
| 280 } | |
| 281 | |
| 277 } // namespace blink | 282 } // namespace blink |
| OLD | NEW |