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

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

Issue 595693002: Use the pinch viewport offset for tap disambiguation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 blink::WebDragOperationsMask mask, 403 blink::WebDragOperationsMask mask,
404 const blink::WebImage& image, 404 const blink::WebImage& image,
405 const blink::WebPoint& imageOffset); 405 const blink::WebPoint& imageOffset);
406 virtual bool acceptsLoadDrops(); 406 virtual bool acceptsLoadDrops();
407 virtual void focusNext(); 407 virtual void focusNext();
408 virtual void focusPrevious(); 408 virtual void focusPrevious();
409 virtual void focusedNodeChanged(const blink::WebNode& node); 409 virtual void focusedNodeChanged(const blink::WebNode& node);
410 virtual void didUpdateLayout(); 410 virtual void didUpdateLayout();
411 #if defined(OS_ANDROID) 411 #if defined(OS_ANDROID)
412 virtual bool didTapMultipleTargets( 412 virtual bool didTapMultipleTargets(
413 const blink::WebGestureEvent& event, 413 const blink::WebSize& inner_viewport_offset,
414 const blink::WebRect& touch_rect,
414 const blink::WebVector<blink::WebRect>& target_rects); 415 const blink::WebVector<blink::WebRect>& target_rects);
415 #endif 416 #endif
416 virtual blink::WebString acceptLanguages(); 417 virtual blink::WebString acceptLanguages();
417 virtual void navigateBackForwardSoon(int offset); 418 virtual void navigateBackForwardSoon(int offset);
418 virtual int historyBackListCount(); 419 virtual int historyBackListCount();
419 virtual int historyForwardListCount(); 420 virtual int historyForwardListCount();
420 virtual blink::WebSpeechRecognizer* speechRecognizer(); 421 virtual blink::WebSpeechRecognizer* speechRecognizer();
421 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); 422 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
422 virtual void zoomLevelChanged(); 423 virtual void zoomLevelChanged();
423 virtual double zoomLevelToZoomFactor(double zoom_level) const; 424 virtual double zoomLevelToZoomFactor(double zoom_level) const;
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 // use the Observer interface to filter IPC messages and receive frame change 1132 // use the Observer interface to filter IPC messages and receive frame change
1132 // notifications. 1133 // notifications.
1133 // --------------------------------------------------------------------------- 1134 // ---------------------------------------------------------------------------
1134 1135
1135 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1136 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1136 }; 1137 };
1137 1138
1138 } // namespace content 1139 } // namespace content
1139 1140
1140 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1141 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698