| Index: Source/core/workers/WorkerGlobalScope.h
|
| diff --git a/Source/core/workers/WorkerGlobalScope.h b/Source/core/workers/WorkerGlobalScope.h
|
| index def8f504a0b7f3b8bd9281e07272ce3720fd273e..a72bbb9e855398a38e63d980cbba38815c350620 100644
|
| --- a/Source/core/workers/WorkerGlobalScope.h
|
| +++ b/Source/core/workers/WorkerGlobalScope.h
|
| @@ -144,7 +144,7 @@ namespace blink {
|
| void applyContentSecurityPolicyFromString(const String& contentSecurityPolicy, ContentSecurityPolicyHeaderType);
|
|
|
| virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
|
| - void addMessageToWorkerConsole(PassRefPtr<ConsoleMessage>);
|
| + void addMessageToWorkerConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>);
|
|
|
| private:
|
| #if !ENABLE(OILPAN)
|
| @@ -156,7 +156,7 @@ namespace blink {
|
| virtual KURL virtualCompleteURL(const String&) const OVERRIDE FINAL;
|
|
|
| virtual void reportBlockedScriptExecutionToInspector(const String& directiveText) OVERRIDE FINAL;
|
| - virtual void addMessage(PassRefPtr<ConsoleMessage>) OVERRIDE FINAL;
|
| + virtual void addMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) OVERRIDE FINAL;
|
|
|
| virtual EventTarget* errorEventTarget() OVERRIDE FINAL;
|
| virtual void didUpdateSecurityOrigin() OVERRIDE FINAL { }
|
|
|