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

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

Issue 10885004: Implement disambiguation popup (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase, change event.boundingBox to event.data.tap Created 8 years, 3 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 (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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 #endif 146 #endif
147 147
148 namespace WebKit { 148 namespace WebKit {
149 class WebApplicationCacheHost; 149 class WebApplicationCacheHost;
150 class WebApplicationCacheHostClient; 150 class WebApplicationCacheHostClient;
151 class WebCompositorOutputSurface; 151 class WebCompositorOutputSurface;
152 class WebDOMMessageEvent; 152 class WebDOMMessageEvent;
153 class WebDataSource; 153 class WebDataSource;
154 class WebDragData; 154 class WebDragData;
155 class WebGeolocationClient; 155 class WebGeolocationClient;
156 class WebGestureEvent;
156 #if defined(OS_ANDROID) 157 #if defined(OS_ANDROID)
157 class WebHitTestResult; 158 class WebHitTestResult;
158 #endif 159 #endif
159 class WebIconURL; 160 class WebIconURL;
160 class WebImage; 161 class WebImage;
161 class WebPeerConnection00Handler; 162 class WebPeerConnection00Handler;
162 class WebPeerConnection00HandlerClient; 163 class WebPeerConnection00HandlerClient;
163 class WebMediaPlayer; 164 class WebMediaPlayer;
164 class WebMediaPlayerClient; 165 class WebMediaPlayerClient;
165 class WebMouseEvent; 166 class WebMouseEvent;
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 virtual void startDragging(WebKit::WebFrame* frame, 487 virtual void startDragging(WebKit::WebFrame* frame,
487 const WebKit::WebDragData& data, 488 const WebKit::WebDragData& data,
488 WebKit::WebDragOperationsMask mask, 489 WebKit::WebDragOperationsMask mask,
489 const WebKit::WebImage& image, 490 const WebKit::WebImage& image,
490 const WebKit::WebPoint& imageOffset); 491 const WebKit::WebPoint& imageOffset);
491 virtual bool acceptsLoadDrops(); 492 virtual bool acceptsLoadDrops();
492 virtual void focusNext(); 493 virtual void focusNext();
493 virtual void focusPrevious(); 494 virtual void focusPrevious();
494 virtual void focusedNodeChanged(const WebKit::WebNode& node); 495 virtual void focusedNodeChanged(const WebKit::WebNode& node);
495 virtual void didUpdateLayout(); 496 virtual void didUpdateLayout();
497 virtual bool didTapMultipleTargets(const WebKit::WebGestureEvent&,
darin (slow to review) 2012/10/08 21:03:46 nit: first argument should be on the next line.
trchen 2012/10/11 23:54:05 Done.
498 const WebKit::WebVector<WebKit::WebRect>& targetRects);
496 virtual void navigateBackForwardSoon(int offset); 499 virtual void navigateBackForwardSoon(int offset);
497 virtual int historyBackListCount(); 500 virtual int historyBackListCount();
498 virtual int historyForwardListCount(); 501 virtual int historyForwardListCount();
499 virtual void postAccessibilityNotification( 502 virtual void postAccessibilityNotification(
500 const WebKit::WebAccessibilityObject& obj, 503 const WebKit::WebAccessibilityObject& obj,
501 WebKit::WebAccessibilityNotification notification); 504 WebKit::WebAccessibilityNotification notification);
502 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, 505 virtual void didUpdateInspectorSetting(const WebKit::WebString& key,
503 const WebKit::WebString& value); 506 const WebKit::WebString& value);
504 virtual WebKit::WebGeolocationClient* geolocationClient(); 507 virtual WebKit::WebGeolocationClient* geolocationClient();
505 virtual WebKit::WebSpeechInputController* speechInputController( 508 virtual WebKit::WebSpeechInputController* speechInputController(
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 void OnOrientationChangeEvent(int orientation); 979 void OnOrientationChangeEvent(int orientation);
977 980
978 void OnPluginActionAt(const gfx::Point& location, 981 void OnPluginActionAt(const gfx::Point& location,
979 const WebKit::WebPluginAction& action); 982 const WebKit::WebPluginAction& action);
980 void OnMoveOrResizeStarted(); 983 void OnMoveOrResizeStarted();
981 CONTENT_EXPORT void OnNavigate(const ViewMsg_Navigate_Params& params); 984 CONTENT_EXPORT void OnNavigate(const ViewMsg_Navigate_Params& params);
982 void OnPaste(); 985 void OnPaste();
983 void OnPasteAndMatchStyle(); 986 void OnPasteAndMatchStyle();
984 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); 987 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params);
985 void OnRedo(); 988 void OnRedo();
989 void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle);
986 void OnReloadFrame(); 990 void OnReloadFrame();
987 void OnReplace(const string16& text); 991 void OnReplace(const string16& text);
988 CONTENT_EXPORT void OnReplaceAll(const string16& text); 992 CONTENT_EXPORT void OnReplaceAll(const string16& text);
989 void OnResetPageEncodingToDefault(); 993 void OnResetPageEncodingToDefault();
990 void OnScriptEvalRequest(const string16& frame_xpath, 994 void OnScriptEvalRequest(const string16& frame_xpath,
991 const string16& jscript, 995 const string16& jscript,
992 int id, 996 int id,
993 bool notify_result); 997 bool notify_result);
994 void OnSelectAll(); 998 void OnSelectAll();
995 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); 999 void OnSelectRange(const gfx::Point& start, const gfx::Point& end);
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 // bunch of stuff, you should probably create a helper class and put your 1578 // bunch of stuff, you should probably create a helper class and put your
1575 // data and methods on that to avoid bloating RenderView more. You can 1579 // data and methods on that to avoid bloating RenderView more. You can
1576 // use the Observer interface to filter IPC messages and receive frame change 1580 // use the Observer interface to filter IPC messages and receive frame change
1577 // notifications. 1581 // notifications.
1578 // --------------------------------------------------------------------------- 1582 // ---------------------------------------------------------------------------
1579 1583
1580 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1584 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1581 }; 1585 };
1582 1586
1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1587 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698