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

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

Issue 11270018: [autofill] Adding new API to request an interactive autocomplete UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review feedback Created 8 years, 1 month 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 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 <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 97 }
98 #endif 98 #endif
99 99
100 namespace WebKit { 100 namespace WebKit {
101 class WebApplicationCacheHost; 101 class WebApplicationCacheHost;
102 class WebApplicationCacheHostClient; 102 class WebApplicationCacheHostClient;
103 class WebCompositorOutputSurface; 103 class WebCompositorOutputSurface;
104 class WebDOMMessageEvent; 104 class WebDOMMessageEvent;
105 class WebDataSource; 105 class WebDataSource;
106 class WebDragData; 106 class WebDragData;
107 class WebFormElement;
107 class WebGeolocationClient; 108 class WebGeolocationClient;
108 class WebGestureEvent; 109 class WebGestureEvent;
109 class WebIconURL; 110 class WebIconURL;
110 class WebImage; 111 class WebImage;
111 class WebPeerConnection00Handler; 112 class WebPeerConnection00Handler;
112 class WebPeerConnection00HandlerClient; 113 class WebPeerConnection00HandlerClient;
113 class WebMediaPlayer; 114 class WebMediaPlayer;
114 class WebMediaPlayerClient; 115 class WebMediaPlayerClient;
115 class WebMouseEvent; 116 class WebMouseEvent;
116 class WebPeerConnectionHandler; 117 class WebPeerConnectionHandler;
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 double load_progress); 448 double load_progress);
448 virtual bool isSmartInsertDeleteEnabled(); 449 virtual bool isSmartInsertDeleteEnabled();
449 virtual bool isSelectTrailingWhitespaceEnabled(); 450 virtual bool isSelectTrailingWhitespaceEnabled();
450 virtual void didChangeSelection(bool is_selection_empty); 451 virtual void didChangeSelection(bool is_selection_empty);
451 virtual void didExecuteCommand(const WebKit::WebString& command_name); 452 virtual void didExecuteCommand(const WebKit::WebString& command_name);
452 virtual bool handleCurrentKeyboardEvent(); 453 virtual bool handleCurrentKeyboardEvent();
453 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, 454 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event,
454 bool event_swallowed) OVERRIDE; 455 bool event_swallowed) OVERRIDE;
455 virtual WebKit::WebColorChooser* createColorChooser( 456 virtual WebKit::WebColorChooser* createColorChooser(
456 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); 457 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color);
458 virtual void requestAutocomplete(WebKit::WebFrame* frame,
jam 2012/10/26 20:09:38 which interface is this from (I couldn't find it o
Dan Beam 2012/10/26 20:58:39 sorry, the WebKit stuff isn't in yet, it's in revi
jam 2012/10/26 21:06:04 you need to look in the chromium repo (not webkit)
Ilya Sherman 2012/10/26 23:18:42 John, the WebAutofillClient class is currently pri
jam 2012/10/26 23:48:47 When I created WebAutofillClient, and the other re
Ilya Sherman 2012/10/27 00:33:36 Ok, I didn't realize that was the history for this
459 const WebKit::WebFormElement& form);
457 virtual bool runFileChooser( 460 virtual bool runFileChooser(
458 const WebKit::WebFileChooserParams& params, 461 const WebKit::WebFileChooserParams& params,
459 WebKit::WebFileChooserCompletion* chooser_completion); 462 WebKit::WebFileChooserCompletion* chooser_completion);
460 virtual void runModalAlertDialog(WebKit::WebFrame* frame, 463 virtual void runModalAlertDialog(WebKit::WebFrame* frame,
461 const WebKit::WebString& message); 464 const WebKit::WebString& message);
462 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, 465 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame,
463 const WebKit::WebString& message); 466 const WebKit::WebString& message);
464 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, 467 virtual bool runModalPromptDialog(WebKit::WebFrame* frame,
465 const WebKit::WebString& message, 468 const WebKit::WebString& message,
466 const WebKit::WebString& default_value, 469 const WebKit::WebString& default_value,
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1589 // use the Observer interface to filter IPC messages and receive frame change 1592 // use the Observer interface to filter IPC messages and receive frame change
1590 // notifications. 1593 // notifications.
1591 // --------------------------------------------------------------------------- 1594 // ---------------------------------------------------------------------------
1592 1595
1593 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1596 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1594 }; 1597 };
1595 1598
1596 } // namespace content 1599 } // namespace content
1597 1600
1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1601 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698