Show
Ignore:
Timestamp:
08/15/08 13:25:16 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35774

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/WKAL/Concretizations/Graphics/WK/BCImageWK.cpp

    r243 r437  
    2929 
    3030#include "AffineTransform.h" 
     31#include "BitmapImage.h" 
    3132#include "GraphicsContext.h" 
    3233#include "IntRect.h" 
     
    4849Image::~Image() 
    4950{ 
     51} 
     52 
     53Image* Image::nullImage() 
     54{ 
     55    static RefPtr<Image> nullImage = BitmapImage::create(); 
     56    return nullImage.get(); 
    5057} 
    5158