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

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

Issue 183743021: Implement MediaCaptureDevices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc
diff --git a/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc b/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc
index 50b1239cce5cc5e1a305fa6521e9c0637624309a..90aaf1a1920e9b5d629c97d746c651298bc6fe9d 100644
--- a/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc
+++ b/chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc
@@ -10,13 +10,13 @@
#include "chrome/browser/custom_handlers/protocol_handler_registry.h"
#include "chrome/browser/infobars/infobar_delegate.h"
#include "chrome/browser/infobars/infobar_service.h"
-#include "chrome/browser/media/media_capture_devices_dispatcher.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/content_settings/content_setting_bubble_model.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/content_settings.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "chrome/test/base/testing_profile.h"
+#include "content/public/browser/media_capture_devices.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/web_contents_tester.h"
#include "grit/generated_resources.h"
@@ -110,8 +110,7 @@ TEST_F(ContentSettingBubbleModelTest, Cookies) {
}
TEST_F(ContentSettingBubbleModelTest, MediastreamMicAndCamera) {
- // Required to break dependency on BrowserMainLoop.
- MediaCaptureDevicesDispatcher::GetInstance()->
+ content::MediaCaptureDevices::GetInstance()->
DisableDeviceEnumerationForTesting();
TabSpecificContentSettings* content_settings =
@@ -151,8 +150,7 @@ TEST_F(ContentSettingBubbleModelTest, MediastreamMicAndCamera) {
}
TEST_F(ContentSettingBubbleModelTest, BlockedMediastreamMicAndCamera) {
- // Required to break dependency on BrowserMainLoop.
- MediaCaptureDevicesDispatcher::GetInstance()->
+ content::MediaCaptureDevices::GetInstance()->
DisableDeviceEnumerationForTesting();
WebContentsTester::For(web_contents())->
@@ -240,8 +238,7 @@ TEST_F(ContentSettingBubbleModelTest, BlockedMediastreamMicAndCamera) {
}
TEST_F(ContentSettingBubbleModelTest, MediastreamMic) {
- // Required to break dependency on BrowserMainLoop.
- MediaCaptureDevicesDispatcher::GetInstance()->
+ content::MediaCaptureDevices::GetInstance()->
DisableDeviceEnumerationForTesting();
TabSpecificContentSettings* content_settings =
@@ -310,8 +307,7 @@ TEST_F(ContentSettingBubbleModelTest, MediastreamMic) {
}
TEST_F(ContentSettingBubbleModelTest, MediastreamCamera) {
- // Required to break dependency on BrowserMainLoop.
- MediaCaptureDevicesDispatcher::GetInstance()->
+ content::MediaCaptureDevices::GetInstance()->
DisableDeviceEnumerationForTesting();
TabSpecificContentSettings* content_settings =
@@ -380,8 +376,7 @@ TEST_F(ContentSettingBubbleModelTest, MediastreamCamera) {
}
TEST_F(ContentSettingBubbleModelTest, AccumulateMediastreamMicAndCamera) {
- // Required to break dependency on BrowserMainLoop.
- MediaCaptureDevicesDispatcher::GetInstance()->
+ content::MediaCaptureDevices::GetInstance()->
DisableDeviceEnumerationForTesting();
TabSpecificContentSettings* content_settings =

Powered by Google App Engine
This is Rietveld 408576698