Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1814)

Unified Diff: chrome/installer/util/run_all_unittests.cc

Issue 11050009: Use ScopedCOMInitializer in more places. While this doesn't always simplify code, it does mean we … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/run_all_unittests.cc
===================================================================
--- chrome/installer/util/run_all_unittests.cc (revision 159813)
+++ chrome/installer/util/run_all_unittests.cc (working copy)
@@ -2,9 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <shlobj.h>
-
#include "base/test/test_suite.h"
+#include "base/win/scoped_com_initializer.h"
#include "chrome/common/chrome_paths.h"
int main(int argc, char** argv) {
@@ -13,10 +12,6 @@
// Register Chrome Path provider so that we can get test data dir.
chrome::RegisterPathProvider();
- if (CoInitializeEx(NULL, COINIT_APARTMENTTHREADED) != S_OK)
- return -1;
-
- int ret = test_suite.Run();
- CoUninitialize();
- return ret;
+ base::win::ScopedCOMInitializer com_initializer;
+ return com_initializer.succeeded() ? test_suite.Run() : -1;
}

Powered by Google App Engine
This is Rietveld 408576698