Chromium Code Reviews| Index: public/web/WebViewClient.h |
| diff --git a/public/web/WebViewClient.h b/public/web/WebViewClient.h |
| index 43c85f324d3105f32a34577dbb85a0c85a098137..6e71596d5ad76312b740e3ca25bc6c1546a3fc23 100644 |
| --- a/public/web/WebViewClient.h |
| +++ b/public/web/WebViewClient.h |
| @@ -125,9 +125,12 @@ public: |
| // Misc ---------------------------------------------------------------- |
| + // Whether or not we should report a detailed message for the given source. |
| + virtual bool shouldReportDetailedMessageForSource(const WebString& source) { return false; } |
| + |
| // A new message was added to the console. |
| virtual void didAddMessageToConsole( |
|
pfeldman
2013/08/15 18:36:23
You'll need coordinated landing for this.
|
| - const WebConsoleMessage&, const WebString& sourceName, unsigned sourceLine) { } |
| + const WebConsoleMessage&, const WebString& sourceName, unsigned sourceLine, const WebString& stackTrace) { } |
| // Called when script in the page calls window.print(). If frame is |
| // non-null, then it selects a particular frame, including its |