blob: ac786ae0a25b8a0bbe8105772c9468600f6a18b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2012 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.
#ifndef CHROME_TEST_BASE_CHROME_TEST_SUITE_H_
#define CHROME_TEST_BASE_CHROME_TEST_SUITE_H_
#include <string>
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "content/public/test/content_test_suite_base.h"
namespace base {
class StatsTable;
}
class ChromeTestSuite : public content::ContentTestSuiteBase {
public:
ChromeTestSuite(int argc, char** argv);
virtual ~ChromeTestSuite();
protected:
virtual void Initialize() OVERRIDE;
virtual void Shutdown() OVERRIDE;
virtual content::ContentClient* CreateClientForInitialization() OVERRIDE;
void SetBrowserDirectory(const base::FilePath& browser_dir) {
browser_dir_ = browser_dir;
}
// Alternative path to browser binaries.
base::FilePath browser_dir_;
std::string stats_filename_;
scoped_ptr<base::StatsTable> stats_table_;
};
#endif // CHROME_TEST_BASE_CHROME_TEST_SUITE_H_
|