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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 virtual bool statusbarVisible(); | 58 virtual bool statusbarVisible(); |
59 | 59 |
60 virtual void setScrollbarsVisible(bool); | 60 virtual void setScrollbarsVisible(bool); |
61 virtual bool scrollbarsVisible(); | 61 virtual bool scrollbarsVisible(); |
62 | 62 |
63 virtual void setMenubarVisible(bool); | 63 virtual void setMenubarVisible(bool); |
64 virtual bool menubarVisible(); | 64 virtual bool menubarVisible(); |
65 | 65 |
66 virtual void setResizable(bool); | 66 virtual void setResizable(bool); |
67 | 67 |
68 virtual void addMessageToConsole(const WebCore::String& message, | 68 virtual void addMessageToConsole(WebCore::MessageSource source, |
| 69 WebCore::MessageLevel level, const WebCore::S
tring& message, |
69 unsigned int lineNumber, | 70 unsigned int lineNumber, |
70 const WebCore::String& sourceID); | 71 const WebCore::String& sourceID); |
71 | 72 |
72 virtual bool canRunBeforeUnloadConfirmPanel(); | 73 virtual bool canRunBeforeUnloadConfirmPanel(); |
73 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, | 74 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, |
74 WebCore::Frame* frame); | 75 WebCore::Frame* frame); |
75 | 76 |
76 virtual void closeWindowSoon(); | 77 virtual void closeWindowSoon(); |
77 | 78 |
78 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&); | 79 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 bool toolbars_visible_; | 136 bool toolbars_visible_; |
136 bool statusbar_visible_; | 137 bool statusbar_visible_; |
137 bool scrollbars_visible_; | 138 bool scrollbars_visible_; |
138 bool menubar_visible_; | 139 bool menubar_visible_; |
139 bool resizable_; | 140 bool resizable_; |
140 // Set to true if the next SetCursor is to be ignored. | 141 // Set to true if the next SetCursor is to be ignored. |
141 bool ignore_next_set_cursor_; | 142 bool ignore_next_set_cursor_; |
142 }; | 143 }; |
143 | 144 |
144 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 145 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
OLD | NEW |