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

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

Issue 11550035: Implement pinch-zoom scaling for main-frame scrollbars and pinch-zoom overlay scrollbars. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revised architecture - complete cl for comments on approach. Created 7 years, 10 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 "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h" 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 const WebKit::WebAnimationCurve& curve, 55 const WebKit::WebAnimationCurve& curve,
56 WebKit::WebAnimation::TargetProperty target, 56 WebKit::WebAnimation::TargetProperty target,
57 int animationId); 57 int animationId);
58 virtual WebKit::WebFloatAnimationCurve* 58 virtual WebKit::WebFloatAnimationCurve*
59 createFloatAnimationCurve(); 59 createFloatAnimationCurve();
60 virtual WebKit::WebTransformAnimationCurve* 60 virtual WebKit::WebTransformAnimationCurve*
61 createTransformAnimationCurve(); 61 createTransformAnimationCurve();
62 virtual WebKit::WebTransformOperations* 62 virtual WebKit::WebTransformOperations*
63 createTransformOperations(); 63 createTransformOperations();
64 64
65 virtual void setDefaultWebScrollbarThemeGeometry(
66 WebKit::WebScrollbarThemeGeometry*) OVERRIDE;
67 virtual void setDefaultThemeUsesOverlayScrollbars(bool) OVERRIDE;
68
65 private: 69 private:
66 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_; 70 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_;
67 bool initialized_; 71 bool initialized_;
68 }; 72 };
69 73
70 } // namespace webkit 74 } // namespace webkit
71 75
72 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 76 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698