| 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 ScriptStreamer_h | 5 #ifndef ScriptStreamer_h |
| 6 #define ScriptStreamer_h | 6 #define ScriptStreamer_h |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "core/CoreExport.h" | 10 #include "core/CoreExport.h" |
| 11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 12 #include "platform/wtf/Noncopyable.h" |
| 13 #include "platform/wtf/text/WTFString.h" |
| 12 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
| 13 #include "wtf/Noncopyable.h" | |
| 14 #include "wtf/text/WTFString.h" | |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class PendingScript; | 18 class PendingScript; |
| 19 class Resource; | 19 class Resource; |
| 20 class ScriptResource; | 20 class ScriptResource; |
| 21 class ScriptState; | 21 class ScriptState; |
| 22 class Settings; | 22 class Settings; |
| 23 class SourceStream; | 23 class SourceStream; |
| 24 class WebTaskRunner; | 24 class WebTaskRunner; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 // Encoding of the streamed script. Saved for sanity checking purposes. | 166 // Encoding of the streamed script. Saved for sanity checking purposes. |
| 167 v8::ScriptCompiler::StreamedSource::Encoding m_encoding; | 167 v8::ScriptCompiler::StreamedSource::Encoding m_encoding; |
| 168 | 168 |
| 169 RefPtr<WebTaskRunner> m_loadingTaskRunner; | 169 RefPtr<WebTaskRunner> m_loadingTaskRunner; |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 } // namespace blink | 172 } // namespace blink |
| 173 | 173 |
| 174 #endif // ScriptStreamer_h | 174 #endif // ScriptStreamer_h |
| OLD | NEW |