Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / ImageBufferClient.h
index 4843f50..90e5476 100644 (file)
 #ifndef ImageBufferClient_h
 #define ImageBufferClient_h
 
-namespace WebCore {
+namespace blink {
 
 class ImageBufferClient {
 public:
     virtual ~ImageBufferClient() { }
     virtual void notifySurfaceInvalid() = 0;
+    virtual bool isDirty() = 0;
+    virtual void didFinalizeFrame() = 0;
 };
 
-}
+} // namespace blink
 
 #endif