| 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 SKY_ENGINE_CORE_APP_MODULE_LOADER_H_ | 5 #ifndef SKY_ENGINE_CORE_APP_MODULELOADER_H_ |
| 6 #define SKY_ENGINE_CORE_APP_MODULE_LOADER_H_ | 6 #define SKY_ENGINE_CORE_APP_MODULELOADER_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "sky/engine/platform/fetcher/MojoFetcher.h" | 9 #include "sky/engine/platform/fetcher/MojoFetcher.h" |
| 10 #include "sky/engine/wtf/OwnPtr.h" | 10 #include "sky/engine/wtf/OwnPtr.h" |
| 11 #include "sky/engine/wtf/RefCounted.h" | 11 #include "sky/engine/wtf/RefCounted.h" |
| 12 #include "sky/engine/wtf/RefPtr.h" | 12 #include "sky/engine/wtf/RefPtr.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 class Application; | 15 class Application; |
| 16 class Document; | 16 class Document; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 Client* client_; | 47 Client* client_; |
| 48 Application* application_; | 48 Application* application_; |
| 49 OwnPtr<MojoFetcher> fetcher_; | 49 OwnPtr<MojoFetcher> fetcher_; |
| 50 RefPtr<Module> module_; | 50 RefPtr<Module> module_; |
| 51 | 51 |
| 52 base::WeakPtrFactory<ModuleLoader> weak_factory_; | 52 base::WeakPtrFactory<ModuleLoader> weak_factory_; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace blink | 55 } // namespace blink |
| 56 | 56 |
| 57 #endif // SKY_ENGINE_CORE_APP_MODULE_LOADER_H_ | 57 #endif // SKY_ENGINE_CORE_APP_MODULELOADER_H_ |
| OLD | NEW |