| 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 WorkletScriptLoader_h | 5 #ifndef WorkletScriptLoader_h |
| 6 #define WorkletScriptLoader_h | 6 #define WorkletScriptLoader_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/loader/resource/ScriptResource.h" | 9 #include "core/loader/resource/ScriptResource.h" |
| 10 #include "platform/loader/fetch/ResourceClient.h" | 10 #include "platform/loader/fetch/ResourceClient.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 Member<ResourceFetcher> m_fetcher; | 66 Member<ResourceFetcher> m_fetcher; |
| 67 Member<Client> m_client; | 67 Member<Client> m_client; |
| 68 | 68 |
| 69 bool m_wasScriptLoadSuccessful = false; | 69 bool m_wasScriptLoadSuccessful = false; |
| 70 bool m_wasScriptLoadComplete = false; | 70 bool m_wasScriptLoadComplete = false; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace blink | 73 } // namespace blink |
| 74 | 74 |
| 75 #endif // WorkletScriptLoader_h | 75 #endif // WorkletScriptLoader_h |
| OLD | NEW |