OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stdarg.h> | 5 #include <stdarg.h> |
6 #include <string.h> | 6 #include <string.h> |
7 | 7 |
8 #include "base/android/path_utils.h" | 8 #include "base/android/path_utils.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 false, // Timestamp | 176 false, // Timestamp |
177 false); // Tick count | 177 false); // Tick count |
178 } | 178 } |
179 | 179 |
180 void InitAndroidTestPaths() { | 180 void InitAndroidTestPaths() { |
181 InitPathProvider(DIR_MODULE); | 181 InitPathProvider(DIR_MODULE); |
182 InitPathProvider(DIR_ANDROID_APP_DATA); | 182 InitPathProvider(DIR_ANDROID_APP_DATA); |
183 } | 183 } |
184 | 184 |
185 void InitAndroidTestMessageLoop() { | 185 void InitAndroidTestMessageLoop() { |
186 if (!MessageLoop::InitMessagePumpForUIFactory(&CreateMessagePumpForUIStub)) | 186 MessageLoop::InitMessagePumpForUIFactory(&CreateMessagePumpForUIStub); |
187 LOG(INFO) << "MessagePumpForUIFactory already set, unable to override."; | |
188 } | 187 } |
189 | 188 |
190 void InitAndroidTest() { | 189 void InitAndroidTest() { |
191 InitAndroidTestLogging(); | 190 InitAndroidTestLogging(); |
192 InitAndroidTestPaths(); | 191 InitAndroidTestPaths(); |
193 InitAndroidTestMessageLoop(); | 192 InitAndroidTestMessageLoop(); |
194 } | 193 } |
195 } // namespace base | 194 } // namespace base |
OLD | NEW |