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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerReportingProxy.h

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
index dcd08535375dc99b7da23d32a2b1d9b4f3aeb738..ce59728a1c0eecea2c654dbee15afc3a8c15b7db 100644
--- a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
@@ -47,7 +47,7 @@ public:
virtual ~WorkerReportingProxy() { }
virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, int exceptionId) = 0;
- virtual void reportConsoleMessage(RawPtr<ConsoleMessage>) = 0;
+ virtual void reportConsoleMessage(ConsoleMessage*) = 0;
virtual void postMessageToPageInspector(const String&) = 0;
virtual void postWorkerConsoleAgentEnabled() = 0;

Powered by Google App Engine
This is Rietveld 408576698