| 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 dragTargetDrop( | 131 virtual void dragTargetDrop( |
| 132 const WebKit::WebPoint& client_point, | 132 const WebKit::WebPoint& client_point, |
| 133 const WebKit::WebPoint& screen_point); | 133 const WebKit::WebPoint& screen_point); |
| 134 virtual int dragIdentity(); | 134 virtual int dragIdentity(); |
| 135 virtual bool setDropEffect(bool accept); | 135 virtual bool setDropEffect(bool accept); |
| 136 virtual void inspectElementAt(const WebKit::WebPoint& point); | 136 virtual void inspectElementAt(const WebKit::WebPoint& point); |
| 137 virtual WebKit::WebString inspectorSettings() const; | 137 virtual WebKit::WebString inspectorSettings() const; |
| 138 virtual void setInspectorSettings(const WebKit::WebString& settings); | 138 virtual void setInspectorSettings(const WebKit::WebString& settings); |
| 139 | 139 |
| 140 // WebView methods: | 140 // WebView methods: |
| 141 virtual WebViewDelegate* GetDelegate(); | |
| 142 virtual void AutofillSuggestionsForNode( | 141 virtual void AutofillSuggestionsForNode( |
| 143 int64 node_id, | 142 int64 node_id, |
| 144 const std::vector<std::wstring>& suggestions, | 143 const std::vector<std::wstring>& suggestions, |
| 145 int default_suggestion_index); | 144 int default_suggestion_index); |
| 146 virtual void HideAutofillPopup(); | 145 virtual void HideAutofillPopup(); |
| 147 virtual void SetIgnoreInputEvents(bool new_value); | 146 virtual void SetIgnoreInputEvents(bool new_value); |
| 148 virtual WebDevToolsAgent* GetWebDevToolsAgent(); | 147 virtual WebDevToolsAgent* GetWebDevToolsAgent(); |
| 149 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl(); | 148 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl(); |
| 150 | 149 |
| 151 // WebViewImpl | 150 // WebViewImpl |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 static const WebKit::WebInputEvent* current_input_event() { | 412 static const WebKit::WebInputEvent* current_input_event() { |
| 414 return g_current_input_event; | 413 return g_current_input_event; |
| 415 } | 414 } |
| 416 private: | 415 private: |
| 417 static const WebKit::WebInputEvent* g_current_input_event; | 416 static const WebKit::WebInputEvent* g_current_input_event; |
| 418 | 417 |
| 419 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); | 418 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); |
| 420 }; | 419 }; |
| 421 | 420 |
| 422 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ | 421 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ |
| OLD | NEW |