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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 2863693003: Unify TouchAction classes (Closed)
Patch Set: add cstdlib Created 3 years, 7 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
« no previous file with comments | « content/common/input_messages.h ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 void ConvertViewportToWindow(blink::WebRect* rect) override; 269 void ConvertViewportToWindow(blink::WebRect* rect) override;
270 void ConvertWindowToViewport(blink::WebFloatRect* rect) override; 270 void ConvertWindowToViewport(blink::WebFloatRect* rect) override;
271 void DidOverscroll(const blink::WebFloatSize& overscrollDelta, 271 void DidOverscroll(const blink::WebFloatSize& overscrollDelta,
272 const blink::WebFloatSize& accumulatedOverscroll, 272 const blink::WebFloatSize& accumulatedOverscroll,
273 const blink::WebFloatPoint& positionInViewport, 273 const blink::WebFloatPoint& positionInViewport,
274 const blink::WebFloatSize& velocityInViewport) override; 274 const blink::WebFloatSize& velocityInViewport) override;
275 void HasTouchEventHandlers(bool has_handlers) override; 275 void HasTouchEventHandlers(bool has_handlers) override;
276 blink::WebScreenInfo GetScreenInfo() override; 276 blink::WebScreenInfo GetScreenInfo() override;
277 void SetToolTipText(const blink::WebString&, 277 void SetToolTipText(const blink::WebString&,
278 blink::WebTextDirection hint) override; 278 blink::WebTextDirection hint) override;
279 void SetTouchAction(blink::WebTouchAction touchAction) override; 279 void SetTouchAction(cc::TouchAction touchAction) override;
280 void ShowUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, 280 void ShowUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition,
281 const blink::WebNode& tappedNode, 281 const blink::WebNode& tappedNode,
282 bool pageChanged) override; 282 bool pageChanged) override;
283 blink::WebWidgetClient* WidgetClient() override; 283 blink::WebWidgetClient* WidgetClient() override;
284 284
285 // blink::WebViewClient implementation -------------------------------------- 285 // blink::WebViewClient implementation --------------------------------------
286 286
287 blink::WebView* CreateView(blink::WebLocalFrame* creator, 287 blink::WebView* CreateView(blink::WebLocalFrame* creator,
288 const blink::WebURLRequest& request, 288 const blink::WebURLRequest& request,
289 const blink::WebWindowFeatures& features, 289 const blink::WebWindowFeatures& features,
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 // --------------------------------------------------------------------------- 829 // ---------------------------------------------------------------------------
830 830
831 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; 831 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_;
832 832
833 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 833 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
834 }; 834 };
835 835
836 } // namespace content 836 } // namespace content
837 837
838 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 838 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/input_messages.h ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698