| OLD | NEW |
| 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 SKY_ENGINE_BINDINGS_CORE_V8_SCRIPTPROMISEPROPERTYBASE_H_ |
| 6 #define ScriptPromisePropertyBase_h | 6 #define SKY_ENGINE_BINDINGS_CORE_V8_SCRIPTPROMISEPROPERTYBASE_H_ |
| 7 | 7 |
| 8 #include "sky/engine/bindings/core/v8/ScopedPersistent.h" | 8 #include "sky/engine/bindings/core/v8/ScopedPersistent.h" |
| 9 #include "sky/engine/bindings/core/v8/ScriptPromise.h" | 9 #include "sky/engine/bindings/core/v8/ScriptPromise.h" |
| 10 #include "sky/engine/bindings/core/v8/ScriptPromiseProperties.h" | 10 #include "sky/engine/bindings/core/v8/ScriptPromiseProperties.h" |
| 11 #include "sky/engine/core/dom/ContextLifecycleObserver.h" | 11 #include "sky/engine/core/dom/ContextLifecycleObserver.h" |
| 12 #include "sky/engine/wtf/OwnPtr.h" | 12 #include "sky/engine/wtf/OwnPtr.h" |
| 13 #include "sky/engine/wtf/RefCounted.h" | 13 #include "sky/engine/wtf/RefCounted.h" |
| 14 #include "sky/engine/wtf/Vector.h" | 14 #include "sky/engine/wtf/Vector.h" |
| 15 #include "v8/include/v8.h" | 15 #include "v8/include/v8.h" |
| 16 | 16 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 v8::Isolate* m_isolate; | 69 v8::Isolate* m_isolate; |
| 70 Name m_name; | 70 Name m_name; |
| 71 State m_state; | 71 State m_state; |
| 72 | 72 |
| 73 WeakPersistentSet m_wrappers; | 73 WeakPersistentSet m_wrappers; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace blink | 76 } // namespace blink |
| 77 | 77 |
| 78 #endif // ScriptPromisePropertyBase_h | 78 #endif // SKY_ENGINE_BINDINGS_CORE_V8_SCRIPTPROMISEPROPERTYBASE_H_ |
| OLD | NEW |