| Index: chrome/browser/extensions/active_tab_unittest.cc
|
| diff --git a/chrome/browser/extensions/active_tab_unittest.cc b/chrome/browser/extensions/active_tab_unittest.cc
|
| index 27ac325f0fdb5d626af1bc997ea9453fb8ae5a03..505ce28cdb44cdbc2b802b909f3fbb3c1524c8a0 100644
|
| --- a/chrome/browser/extensions/active_tab_unittest.cc
|
| +++ b/chrome/browser/extensions/active_tab_unittest.cc
|
| @@ -54,14 +54,12 @@ scoped_refptr<const Extension> CreateTestExtension(
|
| }
|
|
|
| class ActiveTabTest : public ChromeRenderViewHostTestHarness {
|
| - public:
|
| + protected:
|
| ActiveTabTest()
|
| : extension(CreateTestExtension("deadbeef", true)),
|
| another_extension(CreateTestExtension("feedbeef", true)),
|
| - extension_without_active_tab(CreateTestExtension("badbeef", false)),
|
| - ui_thread_(BrowserThread::UI, base::MessageLoop::current()) {}
|
| + extension_without_active_tab(CreateTestExtension("badbeef", false)) {}
|
|
|
| - protected:
|
| virtual void SetUp() OVERRIDE {
|
| ChromeRenderViewHostTestHarness::SetUp();
|
| TabHelper::CreateForWebContents(web_contents());
|
| @@ -124,9 +122,6 @@ class ActiveTabTest : public ChromeRenderViewHostTestHarness {
|
|
|
| // An extension without the activeTab permission.
|
| scoped_refptr<const Extension> extension_without_active_tab;
|
| -
|
| - private:
|
| - content::TestBrowserThread ui_thread_;
|
| };
|
|
|
| TEST_F(ActiveTabTest, GrantToSinglePage) {
|
|
|