| Index: chrome/browser/ui/browser_unittest.cc
|
| diff --git a/chrome/browser/ui/browser_unittest.cc b/chrome/browser/ui/browser_unittest.cc
|
| index b2a38b9495c2db284d72854266f8dc0b30468f70..f761bdca4fdd863299cf62f51bb0a5a15fa4d76e 100644
|
| --- a/chrome/browser/ui/browser_unittest.cc
|
| +++ b/chrome/browser/ui/browser_unittest.cc
|
| @@ -8,8 +8,6 @@
|
| #include "content/public/browser/render_process_host.h"
|
| #include "content/public/browser/site_instance.h"
|
|
|
| -typedef BrowserWithTestWindowTest BrowserTest;
|
| -
|
| class TestingOffTheRecordDestructionProfile : public TestingProfile {
|
| public:
|
| TestingOffTheRecordDestructionProfile() : destroyed_profile_(false) {
|
| @@ -23,7 +21,7 @@ class TestingOffTheRecordDestructionProfile : public TestingProfile {
|
| DISALLOW_COPY_AND_ASSIGN(TestingOffTheRecordDestructionProfile);
|
| };
|
|
|
| -class BrowserTestOffTheRecord : public BrowserTest {
|
| +class BrowserTestOffTheRecord : public BrowserWithTestWindowTest {
|
| public:
|
| BrowserTestOffTheRecord() : off_the_record_profile_(NULL) {}
|
|
|
| @@ -39,7 +37,7 @@ class BrowserTestOffTheRecord : public BrowserTest {
|
| };
|
|
|
| // Various assertions around setting show state.
|
| -TEST_F(BrowserTest, GetSavedWindowShowState) {
|
| +TEST_F(BrowserWithTestWindowTest, GetSavedWindowShowState) {
|
| // Default show state is SHOW_STATE_DEFAULT.
|
| EXPECT_EQ(ui::SHOW_STATE_DEFAULT, browser()->GetSavedWindowShowState());
|
|
|
|
|