| Index: webkit/compositor_bindings/web_compositor_support_software_output_device.h
|
| diff --git a/webkit/compositor_bindings/web_compositor_support_software_output_device.h b/webkit/compositor_bindings/web_compositor_support_software_output_device.h
|
| deleted file mode 100644
|
| index fffc2500b1fbcdc555a3901d352d40641e34eb78..0000000000000000000000000000000000000000
|
| --- a/webkit/compositor_bindings/web_compositor_support_software_output_device.h
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// Copyright 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_SOFTWARE_OUTPUT_DEVICE_H_
|
| -#define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_SOFTWARE_OUTPUT_DEVICE_H_
|
| -
|
| -#include "base/logging.h"
|
| -#include "cc/software_output_device.h"
|
| -#include "skia/ext/refptr.h"
|
| -#include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h"
|
| -#include "third_party/skia/include/core/SkDevice.h"
|
| -#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"
|
| -
|
| -namespace webkit {
|
| -
|
| -class WebCompositorSupportSoftwareOutputDevice :
|
| - public cc::SoftwareOutputDevice {
|
| - public:
|
| - WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebCompositorSupportSoftwareOutputDevice();
|
| - virtual ~WebCompositorSupportSoftwareOutputDevice();
|
| -
|
| - virtual WebKit::WebImage* Lock(bool for_write) OVERRIDE;
|
| - virtual void Unlock() OVERRIDE;
|
| -
|
| - virtual void DidChangeViewportSize(gfx::Size size) OVERRIDE;
|
| -
|
| - private:
|
| - skia::RefPtr<SkDevice> device_;
|
| - WebKit::WebImage image_;
|
| -};
|
| -
|
| -} // namespace webkit
|
| -
|
| -#endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_SOFTWARE_OUTPUT_DEVICE_H_
|
|
|