| 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 #else | 10 #else |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 // We were already initialized, balance that extra-initialization. | 37 // We were already initialized, balance that extra-initialization. |
| 38 OleUninitialize(); | 38 OleUninitialize(); |
| 39 } | 39 } |
| 40 // Balance the OleInitialize from the above test. | 40 // Balance the OleInitialize from the above test. |
| 41 OleUninitialize(); | 41 OleUninitialize(); |
| 42 } | 42 } |
| 43 return TRUE; | 43 return TRUE; |
| 44 } | 44 } |
| 45 | 45 |
| 46 #endif | 46 #endif |
| OLD | NEW |