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 #include "mojo/application/public/cpp/application_test_base.h" | 5 #include "mojo/application/public/cpp/application_test_base.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "mojo/application/public/cpp/application_impl.h" | 9 #include "mojo/application/public/cpp/application_impl.h" |
10 #include "mojo/application/public/interfaces/application.mojom.h" | 10 #include "mojo/application/public/interfaces/application.mojom.h" |
11 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 11 #include "mojo/public/cpp/bindings/binding.h" |
12 #include "third_party/mojo/src/mojo/public/cpp/environment/environment.h" | 12 #include "mojo/public/cpp/environment/environment.h" |
13 #include "third_party/mojo/src/mojo/public/cpp/system/message_pipe.h" | 13 #include "mojo/public/cpp/system/message_pipe.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 namespace test { | 16 namespace test { |
17 | 17 |
18 namespace { | 18 namespace { |
19 // Share the application URL with multiple application tests. | 19 // Share the application URL with multiple application tests. |
20 String g_url; | 20 String g_url; |
21 | 21 |
22 // Application request handle passed from the shell in MojoMain, stored in | 22 // Application request handle passed from the shell in MojoMain, stored in |
23 // between SetUp()/TearDown() so we can (re-)intialize new ApplicationImpls. | 23 // between SetUp()/TearDown() so we can (re-)intialize new ApplicationImpls. |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 Environment::DestroyDefaultRunLoop(); | 148 Environment::DestroyDefaultRunLoop(); |
149 } | 149 } |
150 | 150 |
151 bool ApplicationTestBase::ShouldCreateDefaultRunLoop() { | 151 bool ApplicationTestBase::ShouldCreateDefaultRunLoop() { |
152 return true; | 152 return true; |
153 } | 153 } |
154 | 154 |
155 | 155 |
156 } // namespace test | 156 } // namespace test |
157 } // namespace mojo | 157 } // namespace mojo |
OLD | NEW |