Chromium Code Reviews| Index: Source/web/ChromeClientImpl.h |
| diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h |
| index 71c4ace37ea4a143f27397e373e3cff838feb1d2..d4a6807daa73a19394218355813f561f06e99126 100644 |
| --- a/Source/web/ChromeClientImpl.h |
| +++ b/Source/web/ChromeClientImpl.h |
| @@ -94,10 +94,12 @@ public: |
| virtual void setMenubarVisible(bool); |
| virtual bool menubarVisible(); |
| virtual void setResizable(bool); |
| + virtual bool shouldReportDetailedMessageForContext(v8::Handle<v8::Context>); |
| + virtual bool shouldReportDetailedMessageForURL(const WTF::String&); |
|
abarth-chromium
2013/07/24 23:59:09
Maybe this should be a WebSetting? It seems stran
Devlin
2013/07/25 00:10:46
This will change on a message-by-message basis, si
|
| virtual void addMessageToConsole( |
| WebCore::MessageSource, WebCore::MessageLevel, |
| const WTF::String& message, unsigned lineNumber, |
| - const WTF::String& sourceID); |
| + const WTF::String& sourceID, const WTF::String& details); |
| virtual bool canRunBeforeUnloadConfirmPanel(); |
| virtual bool runBeforeUnloadConfirmPanel( |
| const WTF::String& message, WebCore::Frame*); |