Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/files/file_path.h" | |
|
Aaron Boodman
2013/10/18 17:59:42
Can forward-declare FilePath here.
| |
| 9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 10 #include "mojo/public/system/core.h" | 11 #include "mojo/public/system/core.h" |
| 11 | 12 |
| 12 namespace base { | 13 namespace base { |
| 13 class Thread; | 14 class Thread; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace mojo { | 17 namespace mojo { |
| 17 namespace shell { | 18 namespace shell { |
| 18 | 19 |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 34 // Following members are valid only on app thread. | 35 // Following members are valid only on app thread. |
| 35 Handle shell_handle_; | 36 Handle shell_handle_; |
| 36 | 37 |
| 37 DISALLOW_COPY_AND_ASSIGN(AppContainer); | 38 DISALLOW_COPY_AND_ASSIGN(AppContainer); |
| 38 }; | 39 }; |
| 39 | 40 |
| 40 } // namespace shell | 41 } // namespace shell |
| 41 } // namespace mojo | 42 } // namespace mojo |
| 42 | 43 |
| 43 #endif // MOJO_SHELL_APP_CONTAINER_H_ | 44 #endif // MOJO_SHELL_APP_CONTAINER_H_ |
| OLD | NEW |