Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef BASE_TEST_TEST_SUPPORT_ANDROID_H_ | |
| 6 #define BASE_TEST_TEST_SUPPORT_ANDROID_H_ | |
| 7 | |
| 8 void InitAndroidTestLogging(); | |
|
Paweł Hajdan Jr.
2012/05/25 19:06:08
Those should have short comments above each.
Xianzhu
2012/05/29 17:15:55
Done.
| |
| 9 void InitAndroidTestPaths(); | |
| 10 void InitAndroidTestMessageLoop(); | |
| 11 // Do all of the above. | |
|
Paweł Hajdan Jr.
2012/05/25 19:06:08
Do you need to expose the sub-parts then?
Xianzhu
2012/05/29 17:15:55
Yes. For chromium unit tests, InitAndroidTest() is
| |
| 12 void InitAndroidTest(); | |
| 13 | |
| 14 #endif // BASE_TEST_TEST_SUPPORT_ANDROID_H_ | |
| OLD | NEW |