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

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

Issue 12552004: Support bottom-right anchored fixed-position elements during a pinch gesture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 unified diff | Download patch
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_LAYER_IMPL_H_ 5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ 6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_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/WebAnimation.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h" 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h"
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 virtual void setShouldScrollOnMainThread(bool scroll_on_main); 103 virtual void setShouldScrollOnMainThread(bool scroll_on_main);
104 virtual bool shouldScrollOnMainThread() const; 104 virtual bool shouldScrollOnMainThread() const;
105 virtual void setNonFastScrollableRegion( 105 virtual void setNonFastScrollableRegion(
106 const WebKit::WebVector<WebKit::WebRect>& region); 106 const WebKit::WebVector<WebKit::WebRect>& region);
107 virtual WebKit::WebVector<WebKit::WebRect> nonFastScrollableRegion() const; 107 virtual WebKit::WebVector<WebKit::WebRect> nonFastScrollableRegion() const;
108 virtual void setTouchEventHandlerRegion( 108 virtual void setTouchEventHandlerRegion(
109 const WebKit::WebVector<WebKit::WebRect>& region); 109 const WebKit::WebVector<WebKit::WebRect>& region);
110 virtual WebKit::WebVector<WebKit::WebRect> touchEventHandlerRegion() const; 110 virtual WebKit::WebVector<WebKit::WebRect> touchEventHandlerRegion() const;
111 virtual void setIsContainerForFixedPositionLayers(bool is_container); 111 virtual void setIsContainerForFixedPositionLayers(bool is_container);
112 virtual bool isContainerForFixedPositionLayers() const; 112 virtual bool isContainerForFixedPositionLayers() const;
113 virtual void setFixedToContainerLayer(bool is_fixed); 113 virtual void setPositionConstraint(const WebKit::WebLayerPositionConstraint& c onstraint);
114 virtual bool fixedToContainerLayer() const; 114 virtual WebKit::WebLayerPositionConstraint positionConstraint() const;
115 virtual void setScrollClient(WebKit::WebLayerScrollClient* client); 115 virtual void setScrollClient(WebKit::WebLayerScrollClient* client);
116 116
117 protected: 117 protected:
118 scoped_refptr<cc::Layer> layer_; 118 scoped_refptr<cc::Layer> layer_;
119 119
120 private: 120 private:
121 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); 121 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl);
122 }; 122 };
123 123
124 } // namespace WebKit 124 } // namespace WebKit
125 125
126 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ 126 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698