| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |