| Index: chrome/browser/cocoa/browser_test_helper.h
|
| ===================================================================
|
| --- chrome/browser/cocoa/browser_test_helper.h (revision 46425)
|
| +++ chrome/browser/cocoa/browser_test_helper.h (working copy)
|
| @@ -37,7 +37,7 @@
|
| browser_.reset(new Browser(Browser::TYPE_NORMAL, profile_.get()));
|
| }
|
|
|
| - virtual ~BrowserTestHelper() {
|
| + ~BrowserTestHelper() {
|
| // Delete the testing profile on the UI thread. But first release the
|
| // browser, since it may trigger accesses to the profile upon destruction.
|
| browser_.reset(NULL);
|
| @@ -45,7 +45,7 @@
|
| message_loop_.RunAllPending();
|
| }
|
|
|
| - virtual TestingProfile* profile() const { return profile_.get(); }
|
| + TestingProfile* profile() const { return profile_.get(); }
|
| Browser* browser() const { return browser_.get(); }
|
|
|
| // Creates the browser window. To close this window call |CloseBrowserWindow|.
|
|
|