OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "media/video/capture/video_capture_device.h" | 5 #include "media/video/capture/video_capture_device.h" |
6 | 6 |
7 #include "base/i18n/timezone.h" | 7 #include "base/i18n/timezone.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 | 9 |
10 namespace media { | 10 namespace media { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "PW", "SA", "SR", "SV", "TT", "TW", "UM", "US", "VG", "VI", "VE"}; | 102 "PW", "SA", "SR", "SV", "TT", "TW", "UM", "US", "VG", "VI", "VE"}; |
103 const char** countries_using_60Hz_end = | 103 const char** countries_using_60Hz_end = |
104 countries_using_60Hz + arraysize(countries_using_60Hz); | 104 countries_using_60Hz + arraysize(countries_using_60Hz); |
105 if (std::find(countries_using_60Hz, countries_using_60Hz_end, | 105 if (std::find(countries_using_60Hz, countries_using_60Hz_end, |
106 current_country) == countries_using_60Hz_end) { | 106 current_country) == countries_using_60Hz_end) { |
107 return kPowerLine50Hz; | 107 return kPowerLine50Hz; |
108 } | 108 } |
109 return kPowerLine60Hz; | 109 return kPowerLine60Hz; |
110 } | 110 } |
111 | 111 |
112 bool VideoCaptureDevice::InitializeImageCapture( | |
113 const ImageCaptureFormat& image_format, | |
114 scoped_ptr<ImageClient> client) { | |
115 return false; | |
116 } | |
117 | |
118 } // namespace media | 112 } // namespace media |
OLD | NEW |