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

Side by Side Diff: third_party/WebKit/Source/platform/WebScheduler.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, 10 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 "public/platform/WebScheduler.h" 5 #include "public/platform/WebScheduler.h"
6 6
7 #include "platform/Task.h"
8 #include "public/platform/WebFrameScheduler.h" 7 #include "public/platform/WebFrameScheduler.h"
9 #include "public/platform/WebTraceLocation.h" 8 #include "public/platform/WebTraceLocation.h"
10 #include "wtf/Assertions.h" 9 #include "wtf/Assertions.h"
11 #include "wtf/OwnPtr.h" 10 #include "wtf/OwnPtr.h"
12 11
13 namespace blink { 12 namespace blink {
14 13
15 namespace { 14 namespace {
16 15
17 class IdleTaskRunner : public WebThread::IdleTask { 16 class IdleTaskRunner : public WebThread::IdleTask {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 { 48 {
50 postNonNestableIdleTask(location, new IdleTaskRunner(std::move(idleTask))); 49 postNonNestableIdleTask(location, new IdleTaskRunner(std::move(idleTask)));
51 } 50 }
52 51
53 void WebScheduler::postIdleTaskAfterWakeup(const WebTraceLocation& location, Pas sOwnPtr<IdleTask> idleTask) 52 void WebScheduler::postIdleTaskAfterWakeup(const WebTraceLocation& location, Pas sOwnPtr<IdleTask> idleTask)
54 { 53 {
55 postIdleTaskAfterWakeup(location, new IdleTaskRunner(std::move(idleTask))); 54 postIdleTaskAfterWakeup(location, new IdleTaskRunner(std::move(idleTask)));
56 } 55 }
57 56
58 } // namespace blink 57 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698