Index: content/browser/media/capture/desktop_capture_device.cc |
diff --git a/content/browser/media/capture/desktop_capture_device.cc b/content/browser/media/capture/desktop_capture_device.cc |
index b3764b9d6119eeaff3e8c27a37731c1968742ead..930b752159408de76259fbcd81318ccf0d4b872b 100644 |
--- a/content/browser/media/capture/desktop_capture_device.cc |
+++ b/content/browser/media/capture/desktop_capture_device.cc |
@@ -7,7 +7,6 @@ |
#include "base/bind.h" |
#include "base/location.h" |
#include "base/logging.h" |
-#include "base/metrics/field_trial.h" |
#include "base/metrics/histogram.h" |
#include "base/strings/string_number_conversions.h" |
#include "base/synchronization/lock.h" |
@@ -389,12 +388,8 @@ scoped_ptr<media::VideoCaptureDevice> DesktopCaptureDevice::Create( |
switch (source.type) { |
case DesktopMediaID::TYPE_SCREEN: { |
#if defined(OS_WIN) |
- if (base::FieldTrialList::FindFullName("ScreenCaptureUseMagnification") == |
- "Enabled") { |
- options.set_allow_use_magnification_api(true); |
- } |
+ options.set_allow_use_magnification_api(true); |
#endif |
- |
scoped_ptr<webrtc::ScreenCapturer> screen_capturer( |
webrtc::ScreenCapturer::Create(options)); |
if (screen_capturer && screen_capturer->SelectScreen(source.id)) { |