| 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 | 9 |
| 10 #include "Page.h" | 10 #include "Page.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 int default_suggestion_index); | 124 int default_suggestion_index); |
| 125 virtual void HideAutofillPopup(); | 125 virtual void HideAutofillPopup(); |
| 126 virtual void SetIgnoreInputEvents(bool new_value); | 126 virtual void SetIgnoreInputEvents(bool new_value); |
| 127 | 127 |
| 128 virtual WebDevToolsAgent* GetWebDevToolsAgent(); | 128 virtual WebDevToolsAgent* GetWebDevToolsAgent(); |
| 129 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl(); | 129 WebDevToolsAgentImpl* GetWebDevToolsAgentImpl(); |
| 130 | 130 |
| 131 virtual void SetIsTransparent(bool is_transparent); | 131 virtual void SetIsTransparent(bool is_transparent); |
| 132 virtual bool GetIsTransparent() const; | 132 virtual bool GetIsTransparent() const; |
| 133 | 133 |
| 134 virtual void MediaPlayerActionAt(int x, |
| 135 int y, |
| 136 const MediaPlayerAction& action); |
| 137 |
| 134 // WebViewImpl | 138 // WebViewImpl |
| 135 | 139 |
| 136 const WebKit::WebPoint& last_mouse_down_point() const { | 140 const WebKit::WebPoint& last_mouse_down_point() const { |
| 137 return last_mouse_down_point_; | 141 return last_mouse_down_point_; |
| 138 } | 142 } |
| 139 | 143 |
| 140 WebCore::Frame* GetFocusedWebCoreFrame(); | 144 WebCore::Frame* GetFocusedWebCoreFrame(); |
| 141 | 145 |
| 142 // Returns the currently focused Node or NULL if no node has focus. | 146 // Returns the currently focused Node or NULL if no node has focus. |
| 143 WebCore::Node* GetFocusedNode(); | 147 WebCore::Node* GetFocusedNode(); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 static const WebKit::WebInputEvent* current_input_event() { | 356 static const WebKit::WebInputEvent* current_input_event() { |
| 353 return g_current_input_event; | 357 return g_current_input_event; |
| 354 } | 358 } |
| 355 private: | 359 private: |
| 356 static const WebKit::WebInputEvent* g_current_input_event; | 360 static const WebKit::WebInputEvent* g_current_input_event; |
| 357 | 361 |
| 358 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); | 362 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); |
| 359 }; | 363 }; |
| 360 | 364 |
| 361 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ | 365 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ |
| OLD | NEW |