Chromium Code Reviews| Index: base/test/test_support_ios.h |
| diff --git a/base/message_loop_proxy.cc b/base/test/test_support_ios.h |
| similarity index 52% |
| copy from base/message_loop_proxy.cc |
| copy to base/test/test_support_ios.h |
| index 755564b9c5d915d71e2fc46f335ec8428db3c769..35b5b198e1c813a9fb11577154f49395655c2e4e 100644 |
| --- a/base/message_loop_proxy.cc |
| +++ b/base/test/test_support_ios.h |
| @@ -2,16 +2,14 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "base/message_loop_proxy.h" |
|
Mark Mentovai
2012/07/25 15:22:00
Don’t use svn copy to create a new file. The revis
rohitrao (ping after 24h)
2012/07/25 16:36:53
Git is working some sort of magic and auto-detecti
|
| - |
| -#include "base/bind.h" |
| +#ifndef BASE_TEST_TEST_SUPPORT_IOS_H_ |
| +#define BASE_TEST_TEST_SUPPORT_IOS_H_ |
| namespace base { |
| -MessageLoopProxy::MessageLoopProxy() { |
| -} |
| - |
| -MessageLoopProxy::~MessageLoopProxy() { |
| -} |
| +// Init the message loop for tests on iOS. |
| +void InitIOSTestMessageLoop(); |
| } // namespace base |
| + |
| +#endif // BASE_TEST_TEST_SUPPORT_IOS_H_ |