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

Side by Side Diff: webkit/compositor_bindings/web_compositor_support_impl.h

Issue 10916279: Chromium compositor change implementing page-scale driven pinch-zoom. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebaselined to 160422. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
7 7
8 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" 8 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h"
10 10
11 namespace webkit { 11 namespace webkit {
12 12
13 class WebCompositorSupportImpl : public WebKit::WebCompositorSupport { 13 class WebCompositorSupportImpl : public WebKit::WebCompositorSupport {
14 public: 14 public:
15 WebCompositorSupportImpl(); 15 WebCompositorSupportImpl();
16 virtual ~WebCompositorSupportImpl(); 16 virtual ~WebCompositorSupportImpl();
17 17
18 virtual void initialize(WebKit::WebThread* thread); 18 virtual void initialize(WebKit::WebThread* thread);
19 virtual bool isThreadingEnabled(); 19 virtual bool isThreadingEnabled();
20 virtual void shutdown(); 20 virtual void shutdown();
21 virtual void setPerTilePaintingEnabled(bool enabled); 21 virtual void setPerTilePaintingEnabled(bool enabled);
22 virtual void setPartialSwapEnabled(bool enabled); 22 virtual void setPartialSwapEnabled(bool enabled);
23 virtual void setAcceleratedAnimationEnabled(bool enabled); 23 virtual void setAcceleratedAnimationEnabled(bool enabled);
24 virtual void setPageScalePinchZoomEnabled(bool enabled);
24 virtual WebKit::WebLayerTreeView* createLayerTreeView( 25 virtual WebKit::WebLayerTreeView* createLayerTreeView(
25 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root, 26 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root,
26 const WebKit::WebLayerTreeView::Settings& settings); 27 const WebKit::WebLayerTreeView::Settings& settings);
27 virtual WebKit::WebLayer* createLayer(); 28 virtual WebKit::WebLayer* createLayer();
28 virtual WebKit::WebContentLayer* createContentLayer( 29 virtual WebKit::WebContentLayer* createContentLayer(
29 WebKit::WebContentLayerClient* client); 30 WebKit::WebContentLayerClient* client);
30 virtual WebKit::WebDelegatedRendererLayer* createDelegatedRendererLayer(); 31 virtual WebKit::WebDelegatedRendererLayer* createDelegatedRendererLayer();
31 virtual WebKit::WebExternalTextureLayer* 32 virtual WebKit::WebExternalTextureLayer*
32 createExternalTextureLayer(WebKit::WebExternalTextureLayerClient* client); 33 createExternalTextureLayer(WebKit::WebExternalTextureLayerClient* client);
33 virtual WebKit::WebIOSurfaceLayer* 34 virtual WebKit::WebIOSurfaceLayer*
(...skipping 13 matching lines...) Expand all
47 int animationId); 48 int animationId);
48 virtual WebKit::WebFloatAnimationCurve* 49 virtual WebKit::WebFloatAnimationCurve*
49 createFloatAnimationCurve(); 50 createFloatAnimationCurve();
50 virtual WebKit::WebTransformAnimationCurve* 51 virtual WebKit::WebTransformAnimationCurve*
51 createTransformAnimationCurve(); 52 createTransformAnimationCurve();
52 }; 53 };
53 54
54 } // namespace webkit 55 } // namespace webkit
55 56
56 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 57 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/WebCompositorImpl.cpp ('k') | webkit/compositor_bindings/web_compositor_support_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698