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

Side by Side Diff: content/test/content_browser_test.h

Issue 8036044: Add (not yet working) content_browsertests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 #ifndef CONTENT_TEST_CONTENT_BROWSER_TEST_H_
6 #define CONTENT_TEST_CONTENT_BROWSER_TEST_H_
7 #pragma once
8
9 #include "base/memory/scoped_ptr.h"
10 #include "content/browser/mock_content_browser_client.h"
11 #include "content/test/browser_test_base.h"
12
13 namespace content {
14 class ContentBrowserClient;
15 class ContentClient;
16 }
17
18 class ContentBrowserTest : public BrowserTestBase {
19 protected:
20 // testing::Test:
21 virtual void SetUp() OVERRIDE;
22 virtual void TearDown() OVERRIDE;
23
24 // BrowserTestBase:
25 virtual void RunTestOnMainThreadLoop() OVERRIDE;
26
27 private:
28 scoped_ptr<content::ContentClient> content_client_;
29 scoped_ptr<content::ContentBrowserClient> content_browser_client_;
30 };
31
32 #endif // CONTENT_TEST_CONTENT_BROWSER_TEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698