Index: cc/content_layer_client.h |
diff --git a/cc/content_layer_client.h b/cc/content_layer_client.h |
deleted file mode 100644 |
index ed77ac161086651570ddbcb2653ca5c2fe8f5381..0000000000000000000000000000000000000000 |
--- a/cc/content_layer_client.h |
+++ /dev/null |
@@ -1,31 +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_CONTENT_LAYER_CLIENT_H_ |
-#define CC_CONTENT_LAYER_CLIENT_H_ |
- |
-#include "cc/base/cc_export.h" |
- |
-class SkCanvas; |
- |
-namespace gfx { |
-class Rect; |
-class RectF; |
-} |
- |
-namespace cc { |
- |
-class CC_EXPORT ContentLayerClient { |
- public: |
- virtual void PaintContents(SkCanvas* canvas, |
- gfx::Rect clip, |
- gfx::RectF* opaque) = 0; |
- |
- protected: |
- virtual ~ContentLayerClient() {} |
-}; |
- |
-} |
- |
-#endif // CC_CONTENT_LAYER_CLIENT_H_ |