| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 virtual void setScrollbarsVisible(bool); | 64 virtual void setScrollbarsVisible(bool); |
| 65 virtual bool scrollbarsVisible(); | 65 virtual bool scrollbarsVisible(); |
| 66 | 66 |
| 67 virtual void setMenubarVisible(bool); | 67 virtual void setMenubarVisible(bool); |
| 68 virtual bool menubarVisible(); | 68 virtual bool menubarVisible(); |
| 69 | 69 |
| 70 virtual void setResizable(bool); | 70 virtual void setResizable(bool); |
| 71 | 71 |
| 72 virtual void addMessageToConsole(WebCore::MessageSource source, | 72 virtual void addMessageToConsole(WebCore::MessageSource source, |
| 73 WebCore::MessageType type, |
| 73 WebCore::MessageLevel level, | 74 WebCore::MessageLevel level, |
| 74 const WebCore::String& message, | 75 const WebCore::String& message, |
| 75 unsigned int lineNumber, | 76 unsigned int lineNumber, |
| 76 const WebCore::String& sourceID); | 77 const WebCore::String& sourceID); |
| 77 | 78 |
| 78 virtual bool canRunBeforeUnloadConfirmPanel(); | 79 virtual bool canRunBeforeUnloadConfirmPanel(); |
| 79 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, | 80 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, |
| 80 WebCore::Frame* frame); | 81 WebCore::Frame* frame); |
| 81 | 82 |
| 82 virtual void closeWindowSoon(); | 83 virtual void closeWindowSoon(); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 bool toolbars_visible_; | 148 bool toolbars_visible_; |
| 148 bool statusbar_visible_; | 149 bool statusbar_visible_; |
| 149 bool scrollbars_visible_; | 150 bool scrollbars_visible_; |
| 150 bool menubar_visible_; | 151 bool menubar_visible_; |
| 151 bool resizable_; | 152 bool resizable_; |
| 152 // Set to true if the next SetCursor is to be ignored. | 153 // Set to true if the next SetCursor is to be ignored. |
| 153 bool ignore_next_set_cursor_; | 154 bool ignore_next_set_cursor_; |
| 154 }; | 155 }; |
| 155 | 156 |
| 156 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 157 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
| OLD | NEW |