Index: chrome/browser/web_applications/web_app_unittest.cc |
diff --git a/chrome/browser/web_applications/web_app_unittest.cc b/chrome/browser/web_applications/web_app_unittest.cc |
index cff6853a04f941ddad69536e4f2458e16c24efed..8219e6971709e72c27417cc3c7612a279b96f0ea 100644 |
--- a/chrome/browser/web_applications/web_app_unittest.cc |
+++ b/chrome/browser/web_applications/web_app_unittest.cc |
@@ -16,26 +16,10 @@ |
class WebApplicationTest : public TabContentsWrapperTestHarness { |
public: |
- WebApplicationTest() |
- : TabContentsWrapperTestHarness(), |
- ui_thread_(BrowserThread::UI, &message_loop_) { |
+ WebApplicationTest() : ui_thread_(BrowserThread::UI, &message_loop_) { |
} |
private: |
- // Supply our own profile so we use the correct profile data. The test harness |
- // is not supposed to overwrite a profile if it's already created. |
- virtual void SetUp() { |
- profile_.reset(new TestingProfile()); |
- |
- TabContentsWrapperTestHarness::SetUp(); |
- } |
- |
- virtual void TearDown() { |
- TabContentsWrapperTestHarness::TearDown(); |
- |
- profile_.reset(NULL); |
- } |
- |
BrowserThread ui_thread_; |
}; |