| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "base/string_util.h" | 5 #include "base/string_util.h" |
| 6 #include "chrome/test/unit/chrome_test_suite.h" | 6 #include "chrome/test/unit/chrome_test_suite.h" |
| 7 | 7 |
| 8 #if defined(OS_WIN) | 8 #if defined(OS_WIN) |
| 9 #define DLLEXPORT __declspec(dllexport) | 9 #define DLLEXPORT __declspec(dllexport) |
| 10 #elif | 10 #elif |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 // We were already initialized, balance that extra-initialization. | 36 // We were already initialized, balance that extra-initialization. |
| 37 OleUninitialize(); | 37 OleUninitialize(); |
| 38 } | 38 } |
| 39 // Balance the OleInitialize from the above test. | 39 // Balance the OleInitialize from the above test. |
| 40 OleUninitialize(); | 40 OleUninitialize(); |
| 41 } | 41 } |
| 42 return TRUE; | 42 return TRUE; |
| 43 } | 43 } |
| 44 | 44 |
| 45 #endif | 45 #endif |
| OLD | NEW |