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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyBase.h

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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef ScriptPromisePropertyBase_h 5 #ifndef ScriptPromisePropertyBase_h
6 #define ScriptPromisePropertyBase_h 6 #define ScriptPromisePropertyBase_h
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "bindings/core/v8/ScriptPromise.h" 10 #include "bindings/core/v8/ScriptPromise.h"
11 #include "bindings/core/v8/V8PrivateProperty.h"
12 #include "core/CoreExport.h" 11 #include "core/CoreExport.h"
13 #include "core/dom/ContextLifecycleObserver.h" 12 #include "core/dom/ContextLifecycleObserver.h"
14 #include "platform/bindings/ScopedPersistent.h" 13 #include "platform/bindings/ScopedPersistent.h"
15 #include "platform/bindings/ScriptPromiseProperties.h" 14 #include "platform/bindings/ScriptPromiseProperties.h"
15 #include "platform/bindings/V8PrivateProperty.h"
16 #include "platform/wtf/Compiler.h" 16 #include "platform/wtf/Compiler.h"
17 #include "platform/wtf/RefCounted.h" 17 #include "platform/wtf/RefCounted.h"
18 #include "platform/wtf/Vector.h" 18 #include "platform/wtf/Vector.h"
19 #include "v8/include/v8.h" 19 #include "v8/include/v8.h"
20 20
21 namespace blink { 21 namespace blink {
22 22
23 class DOMWrapperWorld; 23 class DOMWrapperWorld;
24 class ExecutionContext; 24 class ExecutionContext;
25 class ScriptState; 25 class ScriptState;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 v8::Isolate* isolate_; 90 v8::Isolate* isolate_;
91 Name name_; 91 Name name_;
92 State state_; 92 State state_;
93 93
94 WeakPersistentSet wrappers_; 94 WeakPersistentSet wrappers_;
95 }; 95 };
96 96
97 } // namespace blink 97 } // namespace blink
98 98
99 #endif // ScriptPromisePropertyBase_h 99 #endif // ScriptPromisePropertyBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698