Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: mojo/shell/app_container.h

Issue 51373002: NativeViewport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nl Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/services/native_viewport/native_viewport_x11.cc ('k') | mojo/shell/app_container.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_APP_CONTAINER_H_ 5 #ifndef MOJO_SHELL_APP_CONTAINER_H_
6 #define MOJO_SHELL_APP_CONTAINER_H_ 6 #define MOJO_SHELL_APP_CONTAINER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "mojo/public/system/core.h" 11 #include "mojo/public/system/core.h"
12 #include "mojo/shell/loader.h" 12 #include "mojo/shell/loader.h"
13 13
14 namespace base { 14 namespace base {
15 class FilePath; 15 class FilePath;
16 class Thread; 16 class Thread;
17 } 17 }
18 18
19 namespace mojo { 19 namespace mojo {
20 namespace services {
21 class NativeViewportController;
22 }
20 namespace shell { 23 namespace shell {
21 24
22 class Context; 25 class Context;
23 26
24 // A container class that runs an app on its own thread. 27 // A container class that runs an app on its own thread.
25 class AppContainer : public Loader::Delegate { 28 class AppContainer : public Loader::Delegate {
26 public: 29 public:
27 explicit AppContainer(Context* context); 30 explicit AppContainer(Context* context);
28 virtual ~AppContainer(); 31 virtual ~AppContainer();
29 32
30 void Load(const GURL& app_url); 33 void Load(const GURL& app_url);
31 34
32 private: 35 private:
33 // From Loader::Delegate 36 // From Loader::Delegate
34 virtual void DidCompleteLoad(const GURL& app_url, 37 virtual void DidCompleteLoad(const GURL& app_url,
35 const base::FilePath& app_path) OVERRIDE; 38 const base::FilePath& app_path) OVERRIDE;
36 39
37 void AppCompleted(); 40 void AppCompleted();
38 41
39 Context* context_; 42 Context* context_;
40 scoped_ptr<Loader::Job> request_; 43 scoped_ptr<Loader::Job> request_;
41 scoped_ptr<base::Thread> thread_; 44 scoped_ptr<base::Thread> thread_;
45 scoped_ptr<services::NativeViewportController> native_viewport_controller_;
42 46
43 // Following members are valid only on app thread. 47 // Following members are valid only on app thread.
44 Handle shell_handle_; 48 Handle shell_handle_;
45 49
46 base::WeakPtrFactory<AppContainer> weak_factory_; 50 base::WeakPtrFactory<AppContainer> weak_factory_;
47 51
48 DISALLOW_COPY_AND_ASSIGN(AppContainer); 52 DISALLOW_COPY_AND_ASSIGN(AppContainer);
49 }; 53 };
50 54
51 } // namespace shell 55 } // namespace shell
52 } // namespace mojo 56 } // namespace mojo
53 57
54 #endif // MOJO_SHELL_APP_CONTAINER_H_ 58 #endif // MOJO_SHELL_APP_CONTAINER_H_
OLDNEW
« no previous file with comments | « mojo/services/native_viewport/native_viewport_x11.cc ('k') | mojo/shell/app_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698