| Index: cc/output_surface.h
|
| diff --git a/cc/output_surface.h b/cc/output_surface.h
|
| index 3d62f184fbc8b30ac6aa0a948a7c7d81799a0df0..4906ec3e069134a8f54525da85634e0b5adcd536 100644
|
| --- a/cc/output_surface.h
|
| +++ b/cc/output_surface.h
|
| @@ -54,8 +54,9 @@ class CC_EXPORT OutputSurface : public WebKit::WebCompositorOutputSurface {
|
| virtual SoftwareOutputDevice* SoftwareDevice() const = 0;
|
|
|
| // Sends frame data to the parent compositor. This should only be called when
|
| - // capabilities().has_parent_compositor.
|
| - virtual void SendFrameToParentCompositor(const CompositorFrame&) {}
|
| + // capabilities().has_parent_compositor. The implementation may destroy or
|
| + // steal the contents of the CompositorFrame passed in.
|
| + virtual void SendFrameToParentCompositor(CompositorFrame*) = 0;
|
| };
|
|
|
| } // namespace cc
|
|
|