OLD | NEW |
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" | |
13 #include "chrome/browser/infobars/infobar_service.h" | 12 #include "chrome/browser/infobars/infobar_service.h" |
14 #include "chrome/browser/media/media_capture_devices_dispatcher.h" | 13 #include "chrome/browser/media/media_capture_devices_dispatcher.h" |
15 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" | 15 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" |
17 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
18 #include "chrome/common/content_settings.h" | 17 #include "chrome/common/content_settings.h" |
19 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 18 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
20 #include "chrome/test/base/testing_profile.h" | 19 #include "chrome/test/base/testing_profile.h" |
21 #include "content/public/browser/web_contents.h" | 20 #include "content/public/browser/web_contents.h" |
22 #include "content/public/test/web_contents_tester.h" | 21 #include "content/public/test/web_contents_tester.h" |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 url, | 227 url, |
229 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, | 228 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, |
230 std::string())); | 229 std::string())); |
231 EXPECT_EQ(CONTENT_SETTING_ALLOW, | 230 EXPECT_EQ(CONTENT_SETTING_ALLOW, |
232 host_content_settings_map->GetContentSetting( | 231 host_content_settings_map->GetContentSetting( |
233 url, | 232 url, |
234 url, | 233 url, |
235 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, | 234 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, |
236 std::string())); | 235 std::string())); |
237 | 236 |
238 InfoBarManager* infobar_manager = | 237 InfoBarService* infobar_service = |
239 InfoBarService::FromWebContents(web_contents())->infobar_manager(); | 238 InfoBarService::FromWebContents(web_contents()); |
240 infobar_manager->RemoveInfoBar(infobar_manager->infobar_at(0)); | 239 infobar_service->RemoveInfoBar(infobar_service->infobar_at(0)); |
241 } | 240 } |
242 | 241 |
243 TEST_F(ContentSettingBubbleModelTest, MediastreamMic) { | 242 TEST_F(ContentSettingBubbleModelTest, MediastreamMic) { |
244 // Required to break dependency on BrowserMainLoop. | 243 // Required to break dependency on BrowserMainLoop. |
245 MediaCaptureDevicesDispatcher::GetInstance()-> | 244 MediaCaptureDevicesDispatcher::GetInstance()-> |
246 DisableDeviceEnumerationForTesting(); | 245 DisableDeviceEnumerationForTesting(); |
247 | 246 |
248 TabSpecificContentSettings* content_settings = | 247 TabSpecificContentSettings* content_settings = |
249 TabSpecificContentSettings::FromWebContents(web_contents()); | 248 TabSpecificContentSettings::FromWebContents(web_contents()); |
250 std::string request_host = "google.com"; | 249 std::string request_host = "google.com"; |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 ProtocolHandler handler = registry.GetHandlerFor("mailto"); | 663 ProtocolHandler handler = registry.GetHandlerFor("mailto"); |
665 ASSERT_FALSE(handler.IsEmpty()); | 664 ASSERT_FALSE(handler.IsEmpty()); |
666 EXPECT_EQ(base::ASCIIToUTF16("Handler"), handler.title()); | 665 EXPECT_EQ(base::ASCIIToUTF16("Handler"), handler.title()); |
667 EXPECT_EQ(CONTENT_SETTING_ALLOW, | 666 EXPECT_EQ(CONTENT_SETTING_ALLOW, |
668 content_settings->pending_protocol_handler_setting()); | 667 content_settings->pending_protocol_handler_setting()); |
669 EXPECT_FALSE(registry.IsIgnored(test_handler)); | 668 EXPECT_FALSE(registry.IsIgnored(test_handler)); |
670 } | 669 } |
671 | 670 |
672 registry.Shutdown(); | 671 registry.Shutdown(); |
673 } | 672 } |
OLD | NEW |