Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / gin / test / run_all_unittests.cc
blobcb1c96c7bf5440283d1f48ec49b352683db1a9d6
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/basictypes.h"
6 #include "base/bind.h"
7 #include "base/compiler_specific.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/test/launcher/unit_test_launcher.h"
10 #include "base/test/test_suite.h"
12 int main(int argc, char** argv) {
13 base::TestSuite test_suite(argc, argv);
15 return base::LaunchUnitTests(
16 argc, argv, base::Bind(&base::TestSuite::Run,
17 base::Unretained(&test_suite)));