OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_SHELL_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ | 5 #ifndef CHROMECAST_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ |
6 #define CHROMECAST_SHELL_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ | 6 #define CHROMECAST_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "content/public/test/browser_test.h" | 10 #include "content/public/test/browser_test.h" |
11 #include "content/public/test/browser_test_base.h" | 11 #include "content/public/test/browser_test_base.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 class WebContents; | 14 class WebContents; |
15 } | 15 } |
16 | 16 |
(...skipping 29 matching lines...) Expand all Loading... |
46 scoped_ptr<content::WebContents> web_contents_; | 46 scoped_ptr<content::WebContents> web_contents_; |
47 | 47 |
48 bool setup_called_; | 48 bool setup_called_; |
49 | 49 |
50 DISALLOW_COPY_AND_ASSIGN(ChromecastBrowserTest); | 50 DISALLOW_COPY_AND_ASSIGN(ChromecastBrowserTest); |
51 }; | 51 }; |
52 | 52 |
53 } // namespace shell | 53 } // namespace shell |
54 } // namespace chromecast | 54 } // namespace chromecast |
55 | 55 |
56 #endif // CHROMECAST_SHELL_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ | 56 #endif // CHROMECAST_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ |
OLD | NEW |