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

Side by Side Diff: webkit/glue/webview_impl.h

Issue 279001: Move autofill related WebView{Delegate} methods into the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_GLUE_WEBVIEW_IMPL_H_ 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H_
6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H_ 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 virtual void dragTargetDragLeave(); 131 virtual void dragTargetDragLeave();
132 virtual void dragTargetDrop( 132 virtual void dragTargetDrop(
133 const WebKit::WebPoint& client_point, 133 const WebKit::WebPoint& client_point,
134 const WebKit::WebPoint& screen_point); 134 const WebKit::WebPoint& screen_point);
135 virtual int dragIdentity(); 135 virtual int dragIdentity();
136 virtual bool setDropEffect(bool accept); 136 virtual bool setDropEffect(bool accept);
137 virtual void inspectElementAt(const WebKit::WebPoint& point); 137 virtual void inspectElementAt(const WebKit::WebPoint& point);
138 virtual WebKit::WebString inspectorSettings() const; 138 virtual WebKit::WebString inspectorSettings() const;
139 virtual void setInspectorSettings(const WebKit::WebString& settings); 139 virtual void setInspectorSettings(const WebKit::WebString& settings);
140 virtual WebKit::WebAccessibilityObject accessibilityObject(); 140 virtual WebKit::WebAccessibilityObject accessibilityObject();
141 virtual void applyAutofillSuggestions(
142 const WebKit::WebNode&,
143 const WebKit::WebVector<WebKit::WebString>& suggestions,
144 int defaultSuggestionIndex);
145 virtual void hideAutofillPopup();
141 146
142 // WebView methods: 147 // WebView methods:
143 virtual void AutofillSuggestionsForNode(
144 int64 node_id,
145 const std::vector<std::wstring>& suggestions,
146 int default_suggestion_index);
147 virtual void HideAutofillPopup();
148 virtual void SetIgnoreInputEvents(bool new_value); 148 virtual void SetIgnoreInputEvents(bool new_value);
149 virtual WebDevToolsAgent* GetWebDevToolsAgent(); 149 virtual WebDevToolsAgent* GetWebDevToolsAgent();
150 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl(); 150 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl();
151 151
152 // WebViewImpl 152 // WebViewImpl
153 153
154 const WebKit::WebPoint& last_mouse_down_point() const { 154 const WebKit::WebPoint& last_mouse_down_point() const {
155 return last_mouse_down_point_; 155 return last_mouse_down_point_;
156 } 156 }
157 157
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 static const WebKit::WebInputEvent* current_input_event() { 414 static const WebKit::WebInputEvent* current_input_event() {
415 return g_current_input_event; 415 return g_current_input_event;
416 } 416 }
417 private: 417 private:
418 static const WebKit::WebInputEvent* g_current_input_event; 418 static const WebKit::WebInputEvent* g_current_input_event;
419 419
420 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); 420 DISALLOW_COPY_AND_ASSIGN(WebViewImpl);
421 }; 421 };
422 422
423 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ 423 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698