| 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 "content/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 #include "content/renderer/renderer_webcolorchooser_impl.h" | 95 #include "content/renderer/renderer_webcolorchooser_impl.h" |
| 96 #include "content/renderer/screen_orientation/screen_orientation_dispatcher.h" | 96 #include "content/renderer/screen_orientation/screen_orientation_dispatcher.h" |
| 97 #include "content/renderer/shared_worker_repository.h" | 97 #include "content/renderer/shared_worker_repository.h" |
| 98 #include "content/renderer/websharedworker_proxy.h" | 98 #include "content/renderer/websharedworker_proxy.h" |
| 99 #include "gin/modules/module_registry.h" | 99 #include "gin/modules/module_registry.h" |
| 100 #include "media/base/audio_renderer_mixer_input.h" | 100 #include "media/base/audio_renderer_mixer_input.h" |
| 101 #include "media/base/media_log.h" | 101 #include "media/base/media_log.h" |
| 102 #include "media/blink/webencryptedmediaclient_impl.h" | 102 #include "media/blink/webencryptedmediaclient_impl.h" |
| 103 #include "media/blink/webmediaplayer_impl.h" | 103 #include "media/blink/webmediaplayer_impl.h" |
| 104 #include "media/blink/webmediaplayer_params.h" | 104 #include "media/blink/webmediaplayer_params.h" |
| 105 #include "media/filters/gpu_video_accelerator_factories.h" | 105 #include "media/renderers/gpu_video_accelerator_factories.h" |
| 106 #include "net/base/data_url.h" | 106 #include "net/base/data_url.h" |
| 107 #include "net/base/net_errors.h" | 107 #include "net/base/net_errors.h" |
| 108 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 108 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 109 #include "net/http/http_util.h" | 109 #include "net/http/http_util.h" |
| 110 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" | 110 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" |
| 111 #include "third_party/WebKit/public/platform/WebString.h" | 111 #include "third_party/WebKit/public/platform/WebString.h" |
| 112 #include "third_party/WebKit/public/platform/WebURL.h" | 112 #include "third_party/WebKit/public/platform/WebURL.h" |
| 113 #include "third_party/WebKit/public/platform/WebURLError.h" | 113 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 114 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 114 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 115 #include "third_party/WebKit/public/platform/WebVector.h" | 115 #include "third_party/WebKit/public/platform/WebVector.h" |
| (...skipping 4339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4455 | 4455 |
| 4456 #if defined(ENABLE_BROWSER_CDMS) | 4456 #if defined(ENABLE_BROWSER_CDMS) |
| 4457 RendererCdmManager* RenderFrameImpl::GetCdmManager() { | 4457 RendererCdmManager* RenderFrameImpl::GetCdmManager() { |
| 4458 if (!cdm_manager_) | 4458 if (!cdm_manager_) |
| 4459 cdm_manager_ = new RendererCdmManager(this); | 4459 cdm_manager_ = new RendererCdmManager(this); |
| 4460 return cdm_manager_; | 4460 return cdm_manager_; |
| 4461 } | 4461 } |
| 4462 #endif // defined(ENABLE_BROWSER_CDMS) | 4462 #endif // defined(ENABLE_BROWSER_CDMS) |
| 4463 | 4463 |
| 4464 } // namespace content | 4464 } // namespace content |
| OLD | NEW |