Index: cc/render_surface_filters.h |
diff --git a/cc/render_surface_filters.h b/cc/render_surface_filters.h |
deleted file mode 100644 |
index ef65d4c405ce929bf896c9bb2fd365fcacdd67d0..0000000000000000000000000000000000000000 |
--- a/cc/render_surface_filters.h |
+++ /dev/null |
@@ -1,38 +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 CC_RENDER_SURFACE_FILTERS_H_ |
-#define CC_RENDER_SURFACE_FILTERS_H_ |
- |
-#include "cc/base/cc_export.h" |
- |
-class GrContext; |
-class SkBitmap; |
- |
-namespace gfx { |
-class SizeF; |
-} |
- |
-namespace WebKit { |
-class WebFilterOperations; |
-} |
- |
-namespace cc { |
- |
-class CC_EXPORT RenderSurfaceFilters { |
- public: |
- static SkBitmap Apply(const WebKit::WebFilterOperations& filters, |
- unsigned texture_id, |
- gfx::SizeF size, |
- GrContext* gr_context); |
- static WebKit::WebFilterOperations Optimize( |
- const WebKit::WebFilterOperations& filters); |
- |
- private: |
- RenderSurfaceFilters(); |
-}; |
- |
-} |
-#endif // CC_RENDER_SURFACE_FILTERS_H_ |