OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/common/widevine_cdm_constants.h" | 5 #include "chrome/common/widevine_cdm_constants.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "ppapi/shared_impl/ppapi_permissions.h" | 8 #include "ppapi/shared_impl/ppapi_permissions.h" |
9 | 9 |
10 const char kWidevineCdmPluginExtension[] = ""; | 10 const char kWidevineCdmPluginExtension[] = ""; |
11 | 11 |
12 const int32 kWidevineCdmPluginPermissions = ppapi::PERMISSION_DEV | | 12 const int32_t kWidevineCdmPluginPermissions = |
13 ppapi::PERMISSION_PRIVATE; | 13 ppapi::PERMISSION_DEV | ppapi::PERMISSION_PRIVATE; |
OLD | NEW |