Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: webkit/compositor_bindings/web_nine_patch_layer_impl.h

Issue 12496013: Move compositor bindings implementations out of WebKit::, fix style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/compositor_bindings/web_nine_patch_layer_impl.h
diff --git a/webkit/compositor_bindings/web_nine_patch_layer_impl.h b/webkit/compositor_bindings/web_nine_patch_layer_impl.h
deleted file mode 100644
index 8d6cbfe28cda2bfe1844ad424512684f625c9b1c..0000000000000000000000000000000000000000
--- a/webkit/compositor_bindings/web_nine_patch_layer_impl.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 WebNinePatchLayerImpl_h
-#define WebNinePatchLayerImpl_h
-
-#include "base/memory/scoped_ptr.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-#include "webkit/compositor_bindings/web_layer_impl.h"
-
-namespace WebKit {
-
-class WebLayerImpl;
-
-class WebNinePatchLayerImpl {
- public:
- WebNinePatchLayerImpl();
- virtual ~WebNinePatchLayerImpl();
-
- WebLayer* layer();
-
- void setBitmap(const SkBitmap& bitmap, const WebRect& aperture);
-
- private:
- scoped_ptr<WebLayerImpl> layer_;
-};
-
-} // namespace WebKit
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698