Update V8 to version 4.5.34.
[chromium-blink-merge.git] / ios / web / test / web_test_suite.cc
blobcc218e9cc26d4791dfd4dcc761280c78ce86fb0e
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 "ios/web/test/web_test_suite.h"
7 #include "base/metrics/statistics_recorder.h"
9 namespace web {
11 WebTestSuite::WebTestSuite(int argc, char** argv)
12 : base::TestSuite(argc, argv) {
15 WebTestSuite::~WebTestSuite() {
18 void WebTestSuite::Initialize() {
19 base::TestSuite::Initialize();
21 // Initialize the histograms subsystem, so that any histograms hit in tests
22 // are correctly registered with the statistics recorder and can be queried
23 // by tests.
24 base::StatisticsRecorder::Initialize();
27 } // namespace web