| 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_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 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 int client_x, int client_y, int screen_x, int screen_y); | 97 int client_x, int client_y, int screen_x, int screen_y); |
| 98 virtual bool DragTargetDragOver( | 98 virtual bool DragTargetDragOver( |
| 99 int client_x, int client_y, int screen_x, int screen_y); | 99 int client_x, int client_y, int screen_x, int screen_y); |
| 100 virtual void DragTargetDragLeave(); | 100 virtual void DragTargetDragLeave(); |
| 101 virtual void DragTargetDrop( | 101 virtual void DragTargetDrop( |
| 102 int client_x, int client_y, int screen_x, int screen_y); | 102 int client_x, int client_y, int screen_x, int screen_y); |
| 103 virtual void AutofillSuggestionsForNode( | 103 virtual void AutofillSuggestionsForNode( |
| 104 int64 node_id, | 104 int64 node_id, |
| 105 const std::vector<std::wstring>& suggestions, | 105 const std::vector<std::wstring>& suggestions, |
| 106 int default_suggestion_index); | 106 int default_suggestion_index); |
| 107 virtual void HideAutofillPopup(); |
| 107 | 108 |
| 108 // WebViewImpl | 109 // WebViewImpl |
| 109 | 110 |
| 110 const gfx::Size& size() const { return size_; } | 111 const gfx::Size& size() const { return size_; } |
| 111 | 112 |
| 112 const gfx::Point& last_mouse_down_point() const { | 113 const gfx::Point& last_mouse_down_point() const { |
| 113 return last_mouse_down_point_; | 114 return last_mouse_down_point_; |
| 114 } | 115 } |
| 115 | 116 |
| 116 WebCore::Frame* GetFocusedWebCoreFrame(); | 117 WebCore::Frame* GetFocusedWebCoreFrame(); |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 return g_current_input_event; | 312 return g_current_input_event; |
| 312 } | 313 } |
| 313 private: | 314 private: |
| 314 static const WebInputEvent* g_current_input_event; | 315 static const WebInputEvent* g_current_input_event; |
| 315 | 316 |
| 316 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); | 317 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); |
| 317 }; | 318 }; |
| 318 | 319 |
| 319 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 320 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
| 320 | 321 |
| OLD | NEW |