OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. |
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 virtual bool statusbarVisible() = 0; | 117 virtual bool statusbarVisible() = 0; |
118 | 118 |
119 virtual void setScrollbarsVisible(bool) = 0; | 119 virtual void setScrollbarsVisible(bool) = 0; |
120 virtual bool scrollbarsVisible() = 0; | 120 virtual bool scrollbarsVisible() = 0; |
121 | 121 |
122 virtual void setMenubarVisible(bool) = 0; | 122 virtual void setMenubarVisible(bool) = 0; |
123 virtual bool menubarVisible() = 0; | 123 virtual bool menubarVisible() = 0; |
124 | 124 |
125 virtual void setResizable(bool) = 0; | 125 virtual void setResizable(bool) = 0; |
126 | 126 |
127 virtual void addMessageToConsole(MessageSource, MessageLevel, const String&
message, unsigned lineNumber, const String& sourceID) = 0; | 127 virtual bool shouldReportDetailedMessageForSource(const String& source) = 0; |
128 // FIXME: Remove this MessageType variant once all the clients are updated. | 128 virtual void addMessageToConsole(MessageSource, MessageLevel, const String&
message, unsigned lineNumber, const String& sourceID, const String& stackTrace)
= 0; |
129 virtual void addMessageToConsole(MessageSource source, MessageType, MessageL
evel level, const String& message, unsigned lineNumber, const String& sourceID) | |
130 { | |
131 addMessageToConsole(source, level, message, lineNumber, sourceID); | |
132 } | |
133 | 129 |
134 virtual bool canRunBeforeUnloadConfirmPanel() = 0; | 130 virtual bool canRunBeforeUnloadConfirmPanel() = 0; |
135 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*) = 0; | 131 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*) = 0; |
136 | 132 |
137 virtual void closeWindowSoon() = 0; | 133 virtual void closeWindowSoon() = 0; |
138 | 134 |
139 virtual void runJavaScriptAlert(Frame*, const String&) = 0; | 135 virtual void runJavaScriptAlert(Frame*, const String&) = 0; |
140 virtual bool runJavaScriptConfirm(Frame*, const String&) = 0; | 136 virtual bool runJavaScriptConfirm(Frame*, const String&) = 0; |
141 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String
& defaultValue, String& result) = 0; | 137 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String
& defaultValue, String& result) = 0; |
142 virtual void setStatusbarText(const String&) = 0; | 138 virtual void setStatusbarText(const String&) = 0; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 | 273 |
278 // Notifies the client a popup was closed. | 274 // Notifies the client a popup was closed. |
279 virtual void popupClosed(PopupContainer* popupContainer) = 0; | 275 virtual void popupClosed(PopupContainer* popupContainer) = 0; |
280 | 276 |
281 protected: | 277 protected: |
282 virtual ~ChromeClient() { } | 278 virtual ~ChromeClient() { } |
283 }; | 279 }; |
284 | 280 |
285 } | 281 } |
286 #endif // ChromeClient_h | 282 #endif // ChromeClient_h |
OLD | NEW |