| 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 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 #include "media/base/audio_renderer_mixer_input.h" | 140 #include "media/base/audio_renderer_mixer_input.h" |
| 141 #include "media/base/cdm_factory.h" | 141 #include "media/base/cdm_factory.h" |
| 142 #include "media/base/decoder_factory.h" | 142 #include "media/base/decoder_factory.h" |
| 143 #include "media/base/media.h" | 143 #include "media/base/media.h" |
| 144 #include "media/base/media_log.h" | 144 #include "media/base/media_log.h" |
| 145 #include "media/base/media_switches.h" | 145 #include "media/base/media_switches.h" |
| 146 #include "media/blink/url_index.h" | 146 #include "media/blink/url_index.h" |
| 147 #include "media/blink/webencryptedmediaclient_impl.h" | 147 #include "media/blink/webencryptedmediaclient_impl.h" |
| 148 #include "media/blink/webmediaplayer_impl.h" | 148 #include "media/blink/webmediaplayer_impl.h" |
| 149 #include "media/renderers/gpu_video_accelerator_factories.h" | 149 #include "media/renderers/gpu_video_accelerator_factories.h" |
| 150 #include "mojo/common/url_type_converters.h" | |
| 151 #include "mojo/edk/js/core.h" | 150 #include "mojo/edk/js/core.h" |
| 152 #include "mojo/edk/js/support.h" | 151 #include "mojo/edk/js/support.h" |
| 153 #include "net/base/data_url.h" | 152 #include "net/base/data_url.h" |
| 154 #include "net/base/net_errors.h" | 153 #include "net/base/net_errors.h" |
| 155 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 154 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 156 #include "net/http/http_util.h" | 155 #include "net/http/http_util.h" |
| 157 #include "storage/common/data_element.h" | 156 #include "storage/common/data_element.h" |
| 158 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 157 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 159 #include "third_party/WebKit/public/platform/URLConversion.h" | 158 #include "third_party/WebKit/public/platform/URLConversion.h" |
| 160 #include "third_party/WebKit/public/platform/WebCachePolicy.h" | 159 #include "third_party/WebKit/public/platform/WebCachePolicy.h" |
| (...skipping 6104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6265 // event target. Potentially a Pepper plugin will receive the event. | 6264 // event target. Potentially a Pepper plugin will receive the event. |
| 6266 // In order to tell whether a plugin gets the last mouse event and which it | 6265 // In order to tell whether a plugin gets the last mouse event and which it |
| 6267 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 6266 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets |
| 6268 // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 6267 // the event, it will notify us via DidReceiveMouseEvent() and set itself as |
| 6269 // |pepper_last_mouse_event_target_|. | 6268 // |pepper_last_mouse_event_target_|. |
| 6270 pepper_last_mouse_event_target_ = nullptr; | 6269 pepper_last_mouse_event_target_ = nullptr; |
| 6271 #endif | 6270 #endif |
| 6272 } | 6271 } |
| 6273 | 6272 |
| 6274 } // namespace content | 6273 } // namespace content |
| OLD | NEW |