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

Unified Diff: gin/test/run_all_unittests.cc

Issue 76353002: Introduce a Gin class instead of using global functions to control gin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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: gin/test/run_all_unittests.cc
diff --git a/gin/test/run_all_unittests.cc b/gin/test/run_all_unittests.cc
index c8644ed3ed6c9a5a5d38674aa4cf1eb716df58fe..cb1c96c7bf5440283d1f48ec49b352683db1a9d6 100644
--- a/gin/test/run_all_unittests.cc
+++ b/gin/test/run_all_unittests.cc
@@ -5,15 +5,13 @@
#include "base/basictypes.h"
#include "base/bind.h"
#include "base/compiler_specific.h"
+#include "base/memory/scoped_ptr.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
-#include "gin/initialize.h"
int main(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
- gin::Initialize();
-
return base::LaunchUnitTests(
argc, argv, base::Bind(&base::TestSuite::Run,
base::Unretained(&test_suite)));

Powered by Google App Engine
This is Rietveld 408576698