OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 virtual void runModal(); | 87 virtual void runModal(); |
88 virtual void setToolbarsVisible(bool); | 88 virtual void setToolbarsVisible(bool); |
89 virtual bool toolbarsVisible(); | 89 virtual bool toolbarsVisible(); |
90 virtual void setStatusbarVisible(bool); | 90 virtual void setStatusbarVisible(bool); |
91 virtual bool statusbarVisible(); | 91 virtual bool statusbarVisible(); |
92 virtual void setScrollbarsVisible(bool); | 92 virtual void setScrollbarsVisible(bool); |
93 virtual bool scrollbarsVisible(); | 93 virtual bool scrollbarsVisible(); |
94 virtual void setMenubarVisible(bool); | 94 virtual void setMenubarVisible(bool); |
95 virtual bool menubarVisible(); | 95 virtual bool menubarVisible(); |
96 virtual void setResizable(bool); | 96 virtual void setResizable(bool); |
| 97 virtual bool shouldReportDetailedMessageForSource(const WTF::String&); |
97 virtual void addMessageToConsole( | 98 virtual void addMessageToConsole( |
98 WebCore::MessageSource, WebCore::MessageLevel, | 99 WebCore::MessageSource, WebCore::MessageLevel, |
99 const WTF::String& message, unsigned lineNumber, | 100 const WTF::String& message, unsigned lineNumber, |
100 const WTF::String& sourceID); | 101 const WTF::String& sourceID, const WTF::String& stackTrace); |
101 virtual bool canRunBeforeUnloadConfirmPanel(); | 102 virtual bool canRunBeforeUnloadConfirmPanel(); |
102 virtual bool runBeforeUnloadConfirmPanel( | 103 virtual bool runBeforeUnloadConfirmPanel( |
103 const WTF::String& message, WebCore::Frame*); | 104 const WTF::String& message, WebCore::Frame*); |
104 virtual void closeWindowSoon(); | 105 virtual void closeWindowSoon(); |
105 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&); | 106 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&); |
106 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&); | 107 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&); |
107 virtual bool runJavaScriptPrompt( | 108 virtual bool runJavaScriptPrompt( |
108 WebCore::Frame*, const WTF::String& message, | 109 WebCore::Frame*, const WTF::String& message, |
109 const WTF::String& defaultValue, WTF::String& result); | 110 const WTF::String& defaultValue, WTF::String& result); |
110 virtual void setStatusbarText(const WTF::String& message); | 111 virtual void setStatusbarText(const WTF::String& message); |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 private: | 213 private: |
213 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 214 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
214 | 215 |
215 WebViewImpl* m_webView; | 216 WebViewImpl* m_webView; |
216 }; | 217 }; |
217 #endif | 218 #endif |
218 | 219 |
219 } // namespace WebKit | 220 } // namespace WebKit |
220 | 221 |
221 #endif | 222 #endif |
OLD | NEW |