Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: WebKit/chromium/src/WebImageCG.cpp

Issue 2850034: Merge 60977 - Not reviewed, Chromium build fix from Abhishek Arya.... (Closed) Base URL: svn://chrome-svn/chrome/branches/WebKit/375/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebKit/chromium/src/WebImageCG.cpp
===================================================================
--- WebKit/chromium/src/WebImageCG.cpp (revision 51016)
+++ WebKit/chromium/src/WebImageCG.cpp (working copy)
@@ -91,14 +91,14 @@
{
NativeImagePtr p;
if (image.get() && (p = image->nativeImageForCurrentFrame()))
- assign(*p);
+ assign(p);
}
WebImage& WebImage::operator=(const PassRefPtr<Image>& image)
{
NativeImagePtr p;
if (image.get() && (p = image->nativeImageForCurrentFrame()))
- assign(*p);
+ assign(p);
else
reset();
return *this;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698