| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ActiveScriptWrappable_h | 5 #ifndef ActiveScriptWrappable_h |
| 6 #define ActiveScriptWrappable_h | 6 #define ActiveScriptWrappable_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/Noncopyable.h" | 10 #include "platform/wtf/Noncopyable.h" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 class Isolate; | 13 class Isolate; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class ScriptWrappable; | 18 class ScriptWrappable; |
| 19 class ScriptWrappableVisitor; | 19 class ScriptWrappableVisitor; |
| 20 | 20 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 ScriptWrappable* toScriptWrappable( | 61 ScriptWrappable* toScriptWrappable( |
| 62 ActiveScriptWrappableBase* object) const final { | 62 ActiveScriptWrappableBase* object) const final { |
| 63 return static_cast<T*>(object); | 63 return static_cast<T*>(object); |
| 64 } | 64 } |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace blink | 67 } // namespace blink |
| 68 | 68 |
| 69 #endif // ActiveScriptWrappable_h | 69 #endif // ActiveScriptWrappable_h |
| OLD | NEW |