| Index: chrome/browser/extensions/page_action_controller_unittest.cc
|
| diff --git a/chrome/browser/extensions/page_action_controller_unittest.cc b/chrome/browser/extensions/page_action_controller_unittest.cc
|
| index 13a0b954317d0c3e46b51fe9447f611937e281c0..924f93fb7224fe63cdc1c8db8278237f5ca774e5 100644
|
| --- a/chrome/browser/extensions/page_action_controller_unittest.cc
|
| +++ b/chrome/browser/extensions/page_action_controller_unittest.cc
|
| @@ -27,10 +27,10 @@ namespace {
|
| class PageActionControllerTest : public TabContentsTestHarness {
|
| public:
|
| PageActionControllerTest()
|
| - : ui_thread_(BrowserThread::UI, MessageLoop::current()) {
|
| - }
|
| + : ui_thread_(BrowserThread::UI, MessageLoop::current()),
|
| + file_thread_(BrowserThread::FILE, MessageLoop::current()) {}
|
|
|
| - virtual void SetUp() {
|
| + virtual void SetUp() OVERRIDE {
|
| TabContentsTestHarness::SetUp();
|
| // Create an ExtensionService so the PageActionController can find its
|
| // extensions.
|
| @@ -51,6 +51,7 @@ class PageActionControllerTest : public TabContentsTestHarness {
|
|
|
| private:
|
| content::TestBrowserThread ui_thread_;
|
| + content::TestBrowserThread file_thread_;
|
| };
|
|
|
| TEST_F(PageActionControllerTest, NavigationClearsState) {
|
|
|