blob: d00077bd69d31fc0cdc85bd5a8f8a45dedcca432 (
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
|
// 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 CONTENT_TEST_CONTENT_BROWSER_TEST_H_
#define CONTENT_TEST_CONTENT_BROWSER_TEST_H_
#include "base/memory/scoped_ptr.h"
#include "content/test/browser_test_base.h"
class ShellMainDelegate;
class ContentBrowserTest : public BrowserTestBase {
protected:
ContentBrowserTest();
virtual ~ContentBrowserTest();
// testing::Test:
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
// BrowserTestBase:
virtual void RunTestOnMainThreadLoop() OVERRIDE;
private:
scoped_ptr<ShellMainDelegate> shell_main_delegate_;
};
#endif // CONTENT_TEST_CONTENT_BROWSER_TEST_H_
|