Comment #6 on issue 8472 by [email protected]: Cannot go back to previous page within a constrained window after doing a search http://code.google.com/p/chromium/issues/detail?id=8472
This change was reverted, because while the test succeeds in isolation, when it runs with other tests there are problems. Specifically, the in-process browser test framework calls BrowserMain which initializes a bunch of services including the extension service, which itself initializes singleton objects that don't use the Singleton base class, and so when the test completes there are still custom singletons around with pointers to objects that have been destroyed. Everyone who is a singleton should use base::Singleton so that they can be properly shut down between test runs. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
