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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 1366883002: [Reland] Post loading tasks on the appropriate WebFrameScheduler's queue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a clone method to WebTaskRunner which lets us solve the lifetime issue. Created 5 years, 3 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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 98cd8dd6a9e2cff06694ae5b82d463c4df0a3985..28437d1679e9dc9fe8f16e2dee05488566979d5e 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -4845,6 +4845,7 @@ void Document::updateSecurityOrigin(PassRefPtr<SecurityOrigin> origin)
void Document::didUpdateSecurityOrigin()
{
+ fprintf(stderr, "didUpdateSecurityOrigin %p\n", m_frame.get());
Sami 2015/09/29 11:22:47 Oops?-)
alex clarke (OOO till 29th) 2015/09/29 16:10:36 Done.
if (!m_frame)
return;
m_frame->updateFrameSecurityOrigin();

Powered by Google App Engine
This is Rietveld 408576698