| Index: chrome/test/base/in_process_browser_test.cc
|
| diff --git a/chrome/test/base/in_process_browser_test.cc b/chrome/test/base/in_process_browser_test.cc
|
| index 56a4632c9829039f8e2a6e81db779aaeb7de1899..ad8fd5ce503c1e3f83279d6c642bc1c89dfd22df 100644
|
| --- a/chrome/test/base/in_process_browser_test.cc
|
| +++ b/chrome/test/base/in_process_browser_test.cc
|
| @@ -94,7 +94,7 @@ void InProcessBrowserTest::SetUp() {
|
| ASSERT_TRUE(CreateUserDataDirectory())
|
| << "Could not create user data directory.";
|
|
|
| -#if defined(OS_WIN)
|
| +#if defined(OS_WIN) || defined(OS_LINUX)
|
| // This is not really Windows-specific, the transition is just being done
|
| // in stages, and Windows is first. See below for more info.
|
| DCHECK(!g_browser_process);
|
| @@ -225,7 +225,7 @@ bool InProcessBrowserTest::CreateUserDataDirectory() {
|
| }
|
|
|
| void InProcessBrowserTest::TearDown() {
|
| -#if defined(OS_WIN)
|
| +#if defined(OS_WIN) || defined(OS_LINUX)
|
| // This is not really Windows-specific, the transition is just being done
|
| // in stages, and Windows is first. See below for more info.
|
| DCHECK(!g_browser_process);
|
|
|