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

Side by Side Diff: chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc

Issue 211273007: Split InfoBarService core code into InfoBarManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + comments Created 6 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/auto_reset.h" 5 #include "base/auto_reset.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/content_settings/host_content_settings_map.h" 8 #include "chrome/browser/content_settings/host_content_settings_map.h"
9 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 9 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
10 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" 10 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
11 #include "chrome/browser/infobars/infobar_delegate.h" 11 #include "chrome/browser/infobars/infobar_delegate.h"
12 #include "chrome/browser/infobars/infobar_manager.h"
12 #include "chrome/browser/infobars/infobar_service.h" 13 #include "chrome/browser/infobars/infobar_service.h"
13 #include "chrome/browser/media/media_capture_devices_dispatcher.h" 14 #include "chrome/browser/media/media_capture_devices_dispatcher.h"
14 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" 16 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h"
16 #include "chrome/common/chrome_switches.h" 17 #include "chrome/common/chrome_switches.h"
17 #include "chrome/common/content_settings.h" 18 #include "chrome/common/content_settings.h"
18 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 19 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
19 #include "chrome/test/base/testing_profile.h" 20 #include "chrome/test/base/testing_profile.h"
20 #include "content/public/browser/web_contents.h" 21 #include "content/public/browser/web_contents.h"
21 #include "content/public/test/web_contents_tester.h" 22 #include "content/public/test/web_contents_tester.h"
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 url, 228 url,
228 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, 229 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC,
229 std::string())); 230 std::string()));
230 EXPECT_EQ(CONTENT_SETTING_ALLOW, 231 EXPECT_EQ(CONTENT_SETTING_ALLOW,
231 host_content_settings_map->GetContentSetting( 232 host_content_settings_map->GetContentSetting(
232 url, 233 url,
233 url, 234 url,
234 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, 235 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA,
235 std::string())); 236 std::string()));
236 237
237 InfoBarService* infobar_service = 238 InfoBarManager* infobar_manager =
238 InfoBarService::FromWebContents(web_contents()); 239 InfoBarService::FromWebContents(web_contents())->infobar_manager();
239 infobar_service->RemoveInfoBar(infobar_service->infobar_at(0)); 240 infobar_manager->RemoveInfoBar(infobar_manager->infobar_at(0));
240 } 241 }
241 242
242 TEST_F(ContentSettingBubbleModelTest, MediastreamMic) { 243 TEST_F(ContentSettingBubbleModelTest, MediastreamMic) {
243 // Required to break dependency on BrowserMainLoop. 244 // Required to break dependency on BrowserMainLoop.
244 MediaCaptureDevicesDispatcher::GetInstance()-> 245 MediaCaptureDevicesDispatcher::GetInstance()->
245 DisableDeviceEnumerationForTesting(); 246 DisableDeviceEnumerationForTesting();
246 247
247 TabSpecificContentSettings* content_settings = 248 TabSpecificContentSettings* content_settings =
248 TabSpecificContentSettings::FromWebContents(web_contents()); 249 TabSpecificContentSettings::FromWebContents(web_contents());
249 std::string request_host = "google.com"; 250 std::string request_host = "google.com";
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 ProtocolHandler handler = registry.GetHandlerFor("mailto"); 664 ProtocolHandler handler = registry.GetHandlerFor("mailto");
664 ASSERT_FALSE(handler.IsEmpty()); 665 ASSERT_FALSE(handler.IsEmpty());
665 EXPECT_EQ(base::ASCIIToUTF16("Handler"), handler.title()); 666 EXPECT_EQ(base::ASCIIToUTF16("Handler"), handler.title());
666 EXPECT_EQ(CONTENT_SETTING_ALLOW, 667 EXPECT_EQ(CONTENT_SETTING_ALLOW,
667 content_settings->pending_protocol_handler_setting()); 668 content_settings->pending_protocol_handler_setting());
668 EXPECT_FALSE(registry.IsIgnored(test_handler)); 669 EXPECT_FALSE(registry.IsIgnored(test_handler));
669 } 670 }
670 671
671 registry.Shutdown(); 672 registry.Shutdown();
672 } 673 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/infobars/translate_infobar_unittest.mm ('k') | chrome/browser/ui/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698