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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp

Issue 2856173004: Clean up bindings/core/v8 (Part 5) (Closed)
Patch Set: Fix build Created 3 years, 7 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 "bindings/core/v8/RejectedPromises.h" 5 #include "bindings/core/v8/RejectedPromises.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include "bindings/core/v8/ScriptValue.h" 8 #include "bindings/core/v8/ScriptValue.h"
9 #include "bindings/core/v8/V8BindingForCore.h" 9 #include "bindings/core/v8/V8BindingForCore.h"
10 #include "bindings/core/v8/V8PerIsolateData.h"
11 #include "core/dom/ExecutionContext.h" 10 #include "core/dom/ExecutionContext.h"
12 #include "core/events/EventTarget.h" 11 #include "core/events/EventTarget.h"
13 #include "core/events/PromiseRejectionEvent.h" 12 #include "core/events/PromiseRejectionEvent.h"
14 #include "core/inspector/ThreadDebugger.h" 13 #include "core/inspector/ThreadDebugger.h"
15 #include "platform/WebTaskRunner.h" 14 #include "platform/WebTaskRunner.h"
16 #include "platform/bindings/ScopedPersistent.h" 15 #include "platform/bindings/ScopedPersistent.h"
17 #include "platform/bindings/ScriptState.h" 16 #include "platform/bindings/ScriptState.h"
17 #include "platform/bindings/V8PerIsolateData.h"
18 #include "platform/scheduler/child/web_scheduler.h" 18 #include "platform/scheduler/child/web_scheduler.h"
19 #include "platform/wtf/Functional.h" 19 #include "platform/wtf/Functional.h"
20 #include "platform/wtf/PtrUtil.h" 20 #include "platform/wtf/PtrUtil.h"
21 #include "public/platform/Platform.h" 21 #include "public/platform/Platform.h"
22 #include "public/platform/WebThread.h" 22 #include "public/platform/WebThread.h"
23 23
24 namespace blink { 24 namespace blink {
25 25
26 static const unsigned kMaxReportedHandlersPendingResolution = 1000; 26 static const unsigned kMaxReportedHandlersPendingResolution = 1000;
27 27
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 kMaxReportedHandlersPendingResolution / 10); 281 kMaxReportedHandlersPendingResolution / 10);
282 } 282 }
283 } 283 }
284 } 284 }
285 285
286 void RejectedPromises::RevokeNow(std::unique_ptr<Message> message) { 286 void RejectedPromises::RevokeNow(std::unique_ptr<Message> message) {
287 message->Revoke(); 287 message->Revoke();
288 } 288 }
289 289
290 } // namespace blink 290 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698