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

Side by Side Diff: Source/core/workers/WorkerMessagingProxy.cpp

Issue 625943002: Catch uncaught promise rejections from V8 and log to console. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2009 Google Inc. All Rights Reserved. 3 * Copyright (C) 2009 Google Inc. All Rights Reserved.
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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 { 169 {
170 if (!m_workerObject) 170 if (!m_workerObject)
171 return; 171 return;
172 172
173 // We don't bother checking the askedToTerminate() flag here, because except ions should *always* be reported even if the thread is terminated. 173 // We don't bother checking the askedToTerminate() flag here, because except ions should *always* be reported even if the thread is terminated.
174 // This is intentionally different than the behavior in MessageWorkerTask, b ecause terminated workers no longer deliver messages (section 4.6 of the WebWork er spec), but they do report exceptions. 174 // This is intentionally different than the behavior in MessageWorkerTask, b ecause terminated workers no longer deliver messages (section 4.6 of the WebWork er spec), but they do report exceptions.
175 175
176 RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sour ceURL, lineNumber, columnNumber, 0); 176 RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sour ceURL, lineNumber, columnNumber, 0);
177 bool errorHandled = !m_workerObject->dispatchEvent(event); 177 bool errorHandled = !m_workerObject->dispatchEvent(event);
178 if (!errorHandled) 178 if (!errorHandled)
179 m_executionContext->reportException(event, 0, nullptr, NotSharableCrossO rigin); 179 m_executionContext->reportException(event, 0, nullptr, nullptr, NotShara bleCrossOrigin);
180 } 180 }
181 181
182 void WorkerMessagingProxy::reportConsoleMessage(MessageSource source, MessageLev el level, const String& message, int lineNumber, const String& sourceURL) 182 void WorkerMessagingProxy::reportConsoleMessage(MessageSource source, MessageLev el level, const String& message, int lineNumber, const String& sourceURL)
183 { 183 {
184 if (m_askedToTerminate) 184 if (m_askedToTerminate)
185 return; 185 return;
186 // FIXME: In case of nested workers, this should go directly to the root Doc ument context. 186 // FIXME: In case of nested workers, this should go directly to the root Doc ument context.
187 ASSERT(m_executionContext->isDocument()); 187 ASSERT(m_executionContext->isDocument());
188 Document* document = toDocument(m_executionContext.get()); 188 Document* document = toDocument(m_executionContext.get());
189 LocalFrame* frame = document->frame(); 189 LocalFrame* frame = document->frame();
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 287
288 // FIXME: This need to be revisited when we support nested worker one day 288 // FIXME: This need to be revisited when we support nested worker one day
289 ASSERT(m_executionContext->isDocument()); 289 ASSERT(m_executionContext->isDocument());
290 Document* document = toDocument(m_executionContext.get()); 290 Document* document = toDocument(m_executionContext.get());
291 LocalFrame* frame = document->frame(); 291 LocalFrame* frame = document->frame();
292 if (frame) 292 if (frame)
293 frame->console().adoptWorkerMessagesAfterTermination(this); 293 frame->console().adoptWorkerMessagesAfterTermination(this);
294 } 294 }
295 295
296 } // namespace blink 296 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698