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

Unified Diff: webkit/compositor_bindings/WebLayerTreeViewImpl.h

Issue 11192050: Rename compositor bindings filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
« no previous file with comments | « webkit/compositor_bindings/WebLayerTest.cpp ('k') | webkit/compositor_bindings/WebLayerTreeViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/WebLayerTreeViewImpl.h
diff --git a/webkit/compositor_bindings/WebLayerTreeViewImpl.h b/webkit/compositor_bindings/WebLayerTreeViewImpl.h
deleted file mode 100644
index f9b9e11286c116558652dfdec06261a0a7038be3..0000000000000000000000000000000000000000
--- a/webkit/compositor_bindings/WebLayerTreeViewImpl.h
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright 2011 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 WebLayerTreeViewImpl_h
-#define WebLayerTreeViewImpl_h
-
-#include "base/memory/scoped_ptr.h"
-#include "cc/layer_tree_host_client.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebLayerTreeView.h"
-
-namespace cc {
-class CCLayerTreeHost;
-}
-
-namespace WebKit {
-class WebLayer;
-class WebLayerTreeViewClient;
-class WebLayerTreeViewClientAdapter;
-
-class WebLayerTreeViewImpl : public WebLayerTreeView, public cc::CCLayerTreeHostClient {
-public:
- explicit WebLayerTreeViewImpl(WebLayerTreeViewClient*);
- virtual ~WebLayerTreeViewImpl();
-
- bool initialize(const Settings&);
-
- // WebLayerTreeView implementation.
- virtual void setSurfaceReady() OVERRIDE;
- virtual void setRootLayer(const WebLayer&) OVERRIDE;
- virtual void clearRootLayer() OVERRIDE;
- virtual void setViewportSize(const WebSize& layoutViewportSize, const WebSize& deviceViewportSize = WebSize()) OVERRIDE;
- virtual WebSize layoutViewportSize() const OVERRIDE;
- virtual WebSize deviceViewportSize() const OVERRIDE;
- virtual void setDeviceScaleFactor(float) OVERRIDE;
- virtual float deviceScaleFactor() const OVERRIDE;
- virtual void setBackgroundColor(WebColor) OVERRIDE;
- virtual void setHasTransparentBackground(bool) OVERRIDE;
- virtual void setVisible(bool) OVERRIDE;
- virtual void setPageScaleFactorAndLimits(float pageScaleFactor, float minimum, float maximum) OVERRIDE;
- virtual void startPageScaleAnimation(const WebPoint& destination, bool useAnchor, float newPageScale, double durationSec) OVERRIDE;
- virtual void setNeedsAnimate() OVERRIDE;
- virtual void setNeedsRedraw() OVERRIDE;
- virtual bool commitRequested() const OVERRIDE;
- virtual void composite() OVERRIDE;
- virtual void updateAnimations(double frameBeginTime) OVERRIDE;
- virtual bool compositeAndReadback(void *pixels, const WebRect&) OVERRIDE;
- virtual void finishAllRendering() OVERRIDE;
- virtual void renderingStats(WebRenderingStats&) const OVERRIDE;
- virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontHeight) OVERRIDE;
- virtual void loseCompositorContext(int numTimes) OVERRIDE;
-
- // cc::CCLayerTreeHostClient implementation.
- virtual void willBeginFrame() OVERRIDE;
- virtual void didBeginFrame() OVERRIDE;
- virtual void animate(double monotonicFrameBeginTime) OVERRIDE;
- virtual void layout() OVERRIDE;
- virtual void applyScrollAndScale(const cc::IntSize& scrollDelta, float pageScale) OVERRIDE;
- virtual scoped_ptr<WebCompositorOutputSurface> createOutputSurface() OVERRIDE;
- virtual void didRecreateOutputSurface(bool success) OVERRIDE;
- virtual scoped_ptr<cc::CCInputHandler> createInputHandler() OVERRIDE;
- virtual void willCommit() OVERRIDE;
- virtual void didCommit() OVERRIDE;
- virtual void didCommitAndDrawFrame() OVERRIDE;
- virtual void didCompleteSwapBuffers() OVERRIDE;
- virtual void scheduleComposite() OVERRIDE;
-
-private:
- WebLayerTreeViewClient* m_client;
- scoped_ptr<cc::CCLayerTreeHost> m_layerTreeHost;
-};
-
-} // namespace WebKit
-
-#endif // WebLayerTreeViewImpl_h
« no previous file with comments | « webkit/compositor_bindings/WebLayerTest.cpp ('k') | webkit/compositor_bindings/WebLayerTreeViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698