Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: trunk/src/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc

Issue 102163002: Revert 238283 "Infobar system refactor." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: trunk/src/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc
===================================================================
--- trunk/src/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc (revision 238401)
+++ trunk/src/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc (working copy)
@@ -236,9 +236,13 @@
CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA,
std::string()));
+ // Removing an |InfoBarDelegate| from the |InfoBarService| does not delete
+ // it. Hence the |delegate| must be cleaned up after it was removed from the
+ // |infobar_service|.
InfoBarService* infobar_service =
InfoBarService::FromWebContents(web_contents());
- infobar_service->RemoveInfoBar(infobar_service->infobar_at(0));
+ scoped_ptr<InfoBarDelegate> delegate(infobar_service->infobar_at(0));
+ infobar_service->RemoveInfoBar(delegate.get());
}
TEST_F(ContentSettingBubbleModelTest, MediastreamMic) {

Powered by Google App Engine
This is Rietveld 408576698