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/cdm/ppapi/ppapi_cdm_adapter.h" | 5 #include "media/cdm/ppapi/ppapi_cdm_adapter.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include "base/macros.h" | 9 #include "base/macros.h" // nogncheck |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "media/base/limits.h" | 11 #include "media/base/limits.h" |
12 #include "media/cdm/ppapi/cdm_file_io_impl.h" | 12 #include "media/cdm/ppapi/cdm_file_io_impl.h" |
13 #include "media/cdm/ppapi/cdm_logging.h" | 13 #include "media/cdm/ppapi/cdm_logging.h" |
14 #include "media/cdm/supported_cdm_versions.h" | 14 #include "media/cdm/supported_cdm_versions.h" |
15 #include "ppapi/c/ppb_console.h" | 15 #include "ppapi/c/ppb_console.h" |
16 #include "ppapi/cpp/private/uma_private.h" | 16 #include "ppapi/cpp/private/uma_private.h" |
17 | 17 |
18 #if defined(CHECK_DOCUMENT_URL) | 18 #if defined(CHECK_DOCUMENT_URL) |
19 #include "ppapi/cpp/dev/url_util_dev.h" | 19 #include "ppapi/cpp/dev/url_util_dev.h" |
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1303 } // namespace media | 1303 } // namespace media |
1304 | 1304 |
1305 namespace pp { | 1305 namespace pp { |
1306 | 1306 |
1307 // Factory function for your specialization of the Module object. | 1307 // Factory function for your specialization of the Module object. |
1308 Module* CreateModule() { | 1308 Module* CreateModule() { |
1309 return new media::PpapiCdmAdapterModule(); | 1309 return new media::PpapiCdmAdapterModule(); |
1310 } | 1310 } |
1311 | 1311 |
1312 } // namespace pp | 1312 } // namespace pp |
OLD | NEW |