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

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
« no previous file with comments | « content/test/browser_test_base.cc ('k') | content/test/content_browser_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ContentBrowserTest();
21 virtual ~ContentBrowserTest();
22
23 // testing::Test:
24 virtual void SetUp() OVERRIDE;
25 virtual void TearDown() OVERRIDE;
26
27 // BrowserTestBase:
28 virtual void RunTestOnMainThreadLoop() OVERRIDE;
29
30 private:
31 scoped_ptr<content::ContentClient> content_client_;
32 scoped_ptr<content::ContentBrowserClient> content_browser_client_;
33 };
34
35 #endif // CONTENT_TEST_CONTENT_BROWSER_TEST_H_
OLDNEW
« no previous file with comments | « content/test/browser_test_base.cc ('k') | content/test/content_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698