| 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 SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ | 5 #ifndef SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ |
| 6 #define SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ | 6 #define SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "mojo/application_manager/application_loader.h" | 10 #include "shell/application_manager/application_loader.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class MessageLoop; | 13 class MessageLoop; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace mojo { | 16 namespace mojo { |
| 17 | 17 |
| 18 class ApplicationManager; | 18 class ApplicationManager; |
| 19 | 19 |
| 20 // ApplicationLoader implementation that creates a background thread and issues | 20 // ApplicationLoader implementation that creates a background thread and issues |
| (...skipping 29 matching lines...) Expand all Loading... |
| 50 | 50 |
| 51 scoped_ptr<ApplicationLoader> loader_; | 51 scoped_ptr<ApplicationLoader> loader_; |
| 52 base::MessageLoop* ui_message_loop_; | 52 base::MessageLoop* ui_message_loop_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(UIApplicationLoader); | 54 DISALLOW_COPY_AND_ASSIGN(UIApplicationLoader); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace mojo | 57 } // namespace mojo |
| 58 | 58 |
| 59 #endif // SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ | 59 #endif // SHELL_ANDROID_UI_APPLICATION_LOADER_ANDROID_H_ |
| OLD | NEW |