| Index: chrome/browser/ui/find_bar/find_backend_unittest.cc
|
| diff --git a/chrome/browser/ui/find_bar/find_backend_unittest.cc b/chrome/browser/ui/find_bar/find_backend_unittest.cc
|
| index 277e31dcf4e7b623a939a2110918f888137d8c5d..82449336512e8052a530fe7b92508b9e8e3bd68d 100644
|
| --- a/chrome/browser/ui/find_bar/find_backend_unittest.cc
|
| +++ b/chrome/browser/ui/find_bar/find_backend_unittest.cc
|
| @@ -12,26 +12,17 @@
|
| #include "chrome/test/base/chrome_render_view_host_test_harness.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/public/browser/web_contents.h"
|
| -#include "content/public/test/test_browser_thread.h"
|
| #include "content/public/test/web_contents_tester.h"
|
|
|
| -using content::BrowserThread;
|
| using content::WebContents;
|
| using content::WebContentsTester;
|
|
|
| class FindBackendTest : public ChromeRenderViewHostTestHarness {
|
| - public:
|
| - FindBackendTest()
|
| - : ChromeRenderViewHostTestHarness(),
|
| - browser_thread_(BrowserThread::UI, &message_loop_) {}
|
| -
|
| - private:
|
| + protected:
|
| virtual void SetUp() OVERRIDE {
|
| ChromeRenderViewHostTestHarness::SetUp();
|
| FindTabHelper::CreateForWebContents(web_contents());
|
| }
|
| -
|
| - content::TestBrowserThread browser_thread_;
|
| };
|
|
|
| namespace {
|
|
|