Index: base/test/test_support_android.h |
diff --git a/base/test/test_support_android.h b/base/test/test_support_android.h |
index 09b188c0058d9e464c4e9bbebcea80202be09cf9..40648cd112cc16aa0ceb715ff05f9e28538b5e23 100644 |
--- a/base/test/test_support_android.h |
+++ b/base/test/test_support_android.h |
@@ -5,6 +5,8 @@ |
#ifndef BASE_TEST_TEST_SUPPORT_ANDROID_H_ |
#define BASE_TEST_TEST_SUPPORT_ANDROID_H_ |
+namespace base { |
Xianzhu
2012/06/08 19:35:37
Shall we also add 'namespace android'?
I saw other
nilesh
2012/06/08 19:39:12
Yeah, but this is in base/test/.
Other files in ba
Xianzhu
2012/06/08 19:44:52
Sorry, my fault :)
|
+ |
// Init logging for tests on Android. Logs will be output into Android's logcat. |
void InitAndroidTestLogging(); |
@@ -17,4 +19,6 @@ void InitAndroidTestMessageLoop(); |
// Do all of the initializations above. |
void InitAndroidTest(); |
+} // namespace base |
+ |
#endif // BASE_TEST_TEST_SUPPORT_ANDROID_H_ |