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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.cpp

Issue 1713143002: Remove most of the blink::Task wrapping of WTF::Function outside WebTaskRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 9 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/fetch/DataConsumerHandleUtil.h" 5 #include "modules/fetch/DataConsumerHandleUtil.h"
6 6
7 #include "platform/Task.h"
8 #include "platform/blob/BlobData.h" 7 #include "platform/blob/BlobData.h"
9 #include "public/platform/Platform.h" 8 #include "public/platform/Platform.h"
9 #include "public/platform/WebTaskRunner.h"
10 #include "public/platform/WebThread.h" 10 #include "public/platform/WebThread.h"
11 #include "public/platform/WebTraceLocation.h" 11 #include "public/platform/WebTraceLocation.h"
12 #include "wtf/Functional.h" 12 #include "wtf/Functional.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 using Result = WebDataConsumerHandle::Result; 16 using Result = WebDataConsumerHandle::Result;
17 17
18 namespace { 18 namespace {
19 19
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 return adoptPtr(new WebToFetchDataConsumerHandleAdapter(handle)); 122 return adoptPtr(new WebToFetchDataConsumerHandleAdapter(handle));
123 } 123 }
124 124
125 NotifyOnReaderCreationHelper::NotifyOnReaderCreationHelper(WebDataConsumerHandle ::Client* client) 125 NotifyOnReaderCreationHelper::NotifyOnReaderCreationHelper(WebDataConsumerHandle ::Client* client)
126 : m_factory(this) 126 : m_factory(this)
127 { 127 {
128 if (!client) 128 if (!client)
129 return; 129 return;
130 // Note we don't need thread safety here because this object is 130 // Note we don't need thread safety here because this object is
131 // bound to the current thread. 131 // bound to the current thread.
132 Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE , new Task(bind(&NotifyOnReaderCreationHelper::notify, m_factory.createWeakPtr() , client))); 132 Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE , bind(&NotifyOnReaderCreationHelper::notify, m_factory.createWeakPtr(), client) );
133 } 133 }
134 134
135 void NotifyOnReaderCreationHelper::notify(WebDataConsumerHandle::Client* client) 135 void NotifyOnReaderCreationHelper::notify(WebDataConsumerHandle::Client* client)
136 { 136 {
137 // |client| dereference is safe here because: 137 // |client| dereference is safe here because:
138 // - |this| is owned by a reader, 138 // - |this| is owned by a reader,
139 // so the reader outlives |this|, and 139 // so the reader outlives |this|, and
140 // - |client| is the client of the reader, so |client| outlives the reader 140 // - |client| is the client of the reader, so |client| outlives the reader
141 // (guaranteed by the user of the reader), 141 // (guaranteed by the user of the reader),
142 // and therefore |client| outlives |this|. 142 // and therefore |client| outlives |this|.
143 client->didGetReadable(); 143 client->didGetReadable();
144 } 144 }
145 145
146 } // namespace blink 146 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698