| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/renderer/plugins/plugin_uma.h" | 5 #include "chrome/renderer/plugins/plugin_uma.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cstring> | 8 #include <cstring> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram_macros.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "content/public/common/content_constants.h" | 13 #include "content/public/common/content_constants.h" |
| 14 #include "third_party/widevine/cdm/widevine_cdm_common.h" | 14 #include "third_party/widevine/cdm/widevine_cdm_common.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 // String we will use to convert mime type to plugin type. | 18 // String we will use to convert mime type to plugin type. |
| 19 const char kWindowsMediaPlayerType[] = "application/x-mplayer2"; | 19 const char kWindowsMediaPlayerType[] = "application/x-mplayer2"; |
| 20 const char kSilverlightTypePrefix[] = "application/x-silverlight"; | 20 const char kSilverlightTypePrefix[] = "application/x-silverlight"; |
| 21 const char kRealPlayerTypePrefix[] = "audio/x-pn-realaudio"; | 21 const char kRealPlayerTypePrefix[] = "audio/x-pn-realaudio"; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 return SHOCKWAVE_FLASH; | 179 return SHOCKWAVE_FLASH; |
| 180 } | 180 } |
| 181 | 181 |
| 182 #if BUILDFLAG(ENABLE_PEPPER_CDMS) | 182 #if BUILDFLAG(ENABLE_PEPPER_CDMS) |
| 183 if (mime_type == kWidevineCdmPluginMimeType) | 183 if (mime_type == kWidevineCdmPluginMimeType) |
| 184 return WIDEVINE_CDM; | 184 return WIDEVINE_CDM; |
| 185 #endif | 185 #endif |
| 186 | 186 |
| 187 return UNSUPPORTED_MIMETYPE; | 187 return UNSUPPORTED_MIMETYPE; |
| 188 } | 188 } |
| OLD | NEW |