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

Unified Diff: mojo/public/bindings/js/test/run_all_unittests.cc

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix style nits 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: mojo/public/bindings/js/test/run_all_unittests.cc
diff --git a/mojo/common/test/run_all_unittests.cc b/mojo/public/bindings/js/test/run_all_unittests.cc
similarity index 80%
copy from mojo/common/test/run_all_unittests.cc
copy to mojo/public/bindings/js/test/run_all_unittests.cc
index dc1990a918bbe3207951e9caa1a08417183f4f2b..f5a4b13d66dfd7c6b8ff3a3d3482590a1e4afe09 100644
--- a/mojo/common/test/run_all_unittests.cc
+++ b/mojo/public/bindings/js/test/run_all_unittests.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -7,12 +7,14 @@
#include "base/compiler_specific.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
+#include "mojo/public/bindings/js/v8_environment.h"
#include "mojo/system/core_impl.h"
int main(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
mojo::system::CoreImpl::Init();
+ mojo::js::Initialize();
return base::LaunchUnitTests(
argc, argv, base::Bind(&base::TestSuite::Run,

Powered by Google App Engine
This is Rietveld 408576698