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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 void addMessageToConsole( | 97 virtual void addMessageToConsole( |
98 WebCore::MessageSource, WebCore::MessageLevel, | 98 WebCore::MessageSource, WebCore::MessageLevel, |
99 const WTF::String& message, unsigned lineNumber, | 99 const WTF::String& message, unsigned lineNumber, |
100 const WTF::String& sourceID); | 100 const WTF::String& sourceID); |
101 virtual bool shouldReportDetailedMessage(const WTF::String& source); | |
102 virtual void reportDetailedMessage(const WTF::String& source, | |
103 WebCore::MessageLevel, const WTF::String& message, | |
104 const WTF::String& jsonStackTrace); | |
Matt Perry
2013/07/10 23:32:07
I think it would be better to extend addMessageToC
Devlin
2013/07/11 01:15:44
Yeah, how much to merge addMessageToConsole() (and
Matt Perry
2013/07/11 02:40:46
Yeah, I'd combine them all. This doesn't feel like
| |
101 virtual bool canRunBeforeUnloadConfirmPanel(); | 105 virtual bool canRunBeforeUnloadConfirmPanel(); |
102 virtual bool runBeforeUnloadConfirmPanel( | 106 virtual bool runBeforeUnloadConfirmPanel( |
103 const WTF::String& message, WebCore::Frame*); | 107 const WTF::String& message, WebCore::Frame*); |
104 virtual void closeWindowSoon(); | 108 virtual void closeWindowSoon(); |
105 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&); | 109 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&); |
106 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&); | 110 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&); |
107 virtual bool runJavaScriptPrompt( | 111 virtual bool runJavaScriptPrompt( |
108 WebCore::Frame*, const WTF::String& message, | 112 WebCore::Frame*, const WTF::String& message, |
109 const WTF::String& defaultValue, WTF::String& result); | 113 const WTF::String& defaultValue, WTF::String& result); |
110 virtual void setStatusbarText(const WTF::String& message); | 114 virtual void setStatusbarText(const WTF::String& message); |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 private: | 216 private: |
213 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 217 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
214 | 218 |
215 WebViewImpl* m_webView; | 219 WebViewImpl* m_webView; |
216 }; | 220 }; |
217 #endif | 221 #endif |
218 | 222 |
219 } // namespace WebKit | 223 } // namespace WebKit |
220 | 224 |
221 #endif | 225 #endif |
OLD | NEW |