| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_H__ | 5 #ifndef WEBKIT_GLUE_WEBVIEW_H__ |
| 6 #define WEBKIT_GLUE_WEBVIEW_H__ | 6 #define WEBKIT_GLUE_WEBVIEW_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 virtual void DragTargetDragLeave() = 0; | 185 virtual void DragTargetDragLeave() = 0; |
| 186 virtual void DragTargetDrop( | 186 virtual void DragTargetDrop( |
| 187 int client_x, int client_y, int screen_x, int screen_y) = 0; | 187 int client_x, int client_y, int screen_x, int screen_y) = 0; |
| 188 | 188 |
| 189 // Notifies the webview that autofill suggestions are available for a node. | 189 // Notifies the webview that autofill suggestions are available for a node. |
| 190 virtual void AutofillSuggestionsForNode( | 190 virtual void AutofillSuggestionsForNode( |
| 191 int64 node_id, | 191 int64 node_id, |
| 192 const std::vector<std::wstring>& suggestions, | 192 const std::vector<std::wstring>& suggestions, |
| 193 int default_suggestion_index) = 0; | 193 int default_suggestion_index) = 0; |
| 194 | 194 |
| 195 // Hides the autofill popup if any are showing. |
| 196 virtual void HideAutofillPopup() = 0; |
| 197 |
| 195 private: | 198 private: |
| 196 DISALLOW_EVIL_CONSTRUCTORS(WebView); | 199 DISALLOW_EVIL_CONSTRUCTORS(WebView); |
| 197 }; | 200 }; |
| 198 | 201 |
| 199 #endif // WEBKIT_GLUE_WEBVIEW_H__ | 202 #endif // WEBKIT_GLUE_WEBVIEW_H__ |
| 200 | 203 |
| OLD | NEW |