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 MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ | 5 #ifndef MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ |
6 #define MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ | 6 #define MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ |
7 | 7 |
8 #include "mojo/public/cpp/application/application_delegate.h" | 8 #include "mojo/public/cpp/application/application_delegate.h" |
9 #include "mojo/public/cpp/application/interface_factory.h" | 9 #include "mojo/public/cpp/application/interface_factory.h" |
10 #include "mojo/services/gpu/public/interfaces/gpu.mojom.h" | 10 #include "mojo/services/gpu/interfaces/gpu.mojom.h" |
11 #include "mojo/services/native_viewport/public/interfaces/native_viewport.mojom.
h" | 11 #include "mojo/services/native_viewport/interfaces/native_viewport.mojom.h" |
12 #include "services/gles2/gpu_impl.h" | 12 #include "services/gles2/gpu_impl.h" |
13 #include "shell/application_manager/application_loader.h" | 13 #include "shell/application_manager/application_loader.h" |
14 | 14 |
15 namespace gles2 { | 15 namespace gles2 { |
16 class GpuState; | 16 class GpuState; |
17 } | 17 } |
18 | 18 |
19 namespace mojo { | 19 namespace mojo { |
20 class ApplicationImpl; | 20 class ApplicationImpl; |
21 } // namespace mojo | 21 } // namespace mojo |
(...skipping 29 matching lines...) Expand all Loading... |
51 | 51 |
52 scoped_refptr<gles2::GpuState> gpu_state_; | 52 scoped_refptr<gles2::GpuState> gpu_state_; |
53 scoped_ptr<mojo::ApplicationImpl> app_; | 53 scoped_ptr<mojo::ApplicationImpl> app_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(NativeViewportApplicationLoader); | 55 DISALLOW_COPY_AND_ASSIGN(NativeViewportApplicationLoader); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace shell | 58 } // namespace shell |
59 | 59 |
60 #endif // MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ | 60 #endif // MOJO_SHELL_ANDROID_NATIVE_VIEWPORT_APPLICATION_LOADER_H_ |
OLD | NEW |