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_CHROME_CLIENT_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
7 | 7 |
8 #include "ChromeClientChromium.h" | 8 #include "ChromeClientChromium.h" |
9 | 9 |
10 class WebViewImpl; | 10 class WebViewImpl; |
(...skipping 26 matching lines...) Expand all Loading... |
37 virtual WebCore::FloatRect pageRect(); | 37 virtual WebCore::FloatRect pageRect(); |
38 | 38 |
39 virtual float scaleFactor(); | 39 virtual float scaleFactor(); |
40 | 40 |
41 virtual void focus(); | 41 virtual void focus(); |
42 virtual void unfocus(); | 42 virtual void unfocus(); |
43 | 43 |
44 virtual bool canTakeFocus(WebCore::FocusDirection); | 44 virtual bool canTakeFocus(WebCore::FocusDirection); |
45 virtual void takeFocus(WebCore::FocusDirection); | 45 virtual void takeFocus(WebCore::FocusDirection); |
46 | 46 |
| 47 virtual void focusedNodeChanged(WebCore::Node*); |
| 48 |
47 virtual WebCore::Page* createWindow(WebCore::Frame*, | 49 virtual WebCore::Page* createWindow(WebCore::Frame*, |
48 const WebCore::FrameLoadRequest&, | 50 const WebCore::FrameLoadRequest&, |
49 const WebCore::WindowFeatures&); | 51 const WebCore::WindowFeatures&); |
50 virtual void show(); | 52 virtual void show(); |
51 | 53 |
52 virtual bool canRunModal(); | 54 virtual bool canRunModal(); |
53 virtual void runModal(); | 55 virtual void runModal(); |
54 | 56 |
55 virtual void setToolbarsVisible(bool); | 57 virtual void setToolbarsVisible(bool); |
56 virtual bool toolbarsVisible(); | 58 virtual bool toolbarsVisible(); |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 bool toolbars_visible_; | 157 bool toolbars_visible_; |
156 bool statusbar_visible_; | 158 bool statusbar_visible_; |
157 bool scrollbars_visible_; | 159 bool scrollbars_visible_; |
158 bool menubar_visible_; | 160 bool menubar_visible_; |
159 bool resizable_; | 161 bool resizable_; |
160 // Set to true if the next SetCursor is to be ignored. | 162 // Set to true if the next SetCursor is to be ignored. |
161 bool ignore_next_set_cursor_; | 163 bool ignore_next_set_cursor_; |
162 }; | 164 }; |
163 | 165 |
164 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 166 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
OLD | NEW |