Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 20191003: Route JS Error Info From Blink to Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@gclient
Patch Set: Adam's requests Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 shouldReportDetailedMessageForContext(v8::Handle<v8::Context>);
98 virtual bool shouldReportDetailedMessageForURL(const WTF::String&);
97 virtual void addMessageToConsole( 99 virtual void addMessageToConsole(
98 WebCore::MessageSource, WebCore::MessageLevel, 100 WebCore::MessageSource, WebCore::MessageLevel,
99 const WTF::String& message, unsigned lineNumber, 101 const WTF::String& message, unsigned lineNumber,
100 const WTF::String& sourceID); 102 const WTF::String& sourceID, const WTF::String& details);
101 virtual bool canRunBeforeUnloadConfirmPanel(); 103 virtual bool canRunBeforeUnloadConfirmPanel();
102 virtual bool runBeforeUnloadConfirmPanel( 104 virtual bool runBeforeUnloadConfirmPanel(
103 const WTF::String& message, WebCore::Frame*); 105 const WTF::String& message, WebCore::Frame*);
104 virtual void closeWindowSoon(); 106 virtual void closeWindowSoon();
105 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&); 107 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
106 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&); 108 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
107 virtual bool runJavaScriptPrompt( 109 virtual bool runJavaScriptPrompt(
108 WebCore::Frame*, const WTF::String& message, 110 WebCore::Frame*, const WTF::String& message,
109 const WTF::String& defaultValue, WTF::String& result); 111 const WTF::String& defaultValue, WTF::String& result);
110 virtual void setStatusbarText(const WTF::String& message); 112 virtual void setStatusbarText(const WTF::String& message);
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 private: 214 private:
213 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 215 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
214 216
215 WebViewImpl* m_webView; 217 WebViewImpl* m_webView;
216 }; 218 };
217 #endif 219 #endif
218 220
219 } // namespace WebKit 221 } // namespace WebKit
220 222
221 #endif 223 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698