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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 | 9 |
10 MSVC_PUSH_WARNING_LEVEL(0); | 10 MSVC_PUSH_WARNING_LEVEL(0); |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 bool handle_external); | 130 bool handle_external); |
131 void popupOpenedInternal(WebCore::PopupContainer* popup_container, | 131 void popupOpenedInternal(WebCore::PopupContainer* popup_container, |
132 const WebCore::IntRect& bounds, | 132 const WebCore::IntRect& bounds, |
133 bool activatable); | 133 bool activatable); |
134 | 134 |
135 void SetCursor(const WebCursor& cursor); | 135 void SetCursor(const WebCursor& cursor); |
136 void SetCursorForPlugin(const WebCursor& cursor); | 136 void SetCursorForPlugin(const WebCursor& cursor); |
137 | 137 |
138 virtual void formStateDidChange(const WebCore::Node*); | 138 virtual void formStateDidChange(const WebCore::Node*); |
139 | 139 |
140 virtual WebCore::HTMLParserQuirks* createHTMLParserQuirks() { return 0; } | 140 virtual PassOwnPtr<WebCore::HTMLParserQuirks> createHTMLParserQuirks() { retur
n 0; } |
141 | 141 |
142 private: | 142 private: |
143 WebViewImpl* webview_; // weak pointer | 143 WebViewImpl* webview_; // weak pointer |
144 bool toolbars_visible_; | 144 bool toolbars_visible_; |
145 bool statusbar_visible_; | 145 bool statusbar_visible_; |
146 bool scrollbars_visible_; | 146 bool scrollbars_visible_; |
147 bool menubar_visible_; | 147 bool menubar_visible_; |
148 bool resizable_; | 148 bool resizable_; |
149 // Set to true if the next SetCursor is to be ignored. | 149 // Set to true if the next SetCursor is to be ignored. |
150 bool ignore_next_set_cursor_; | 150 bool ignore_next_set_cursor_; |
151 }; | 151 }; |
152 | 152 |
153 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 153 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
OLD | NEW |