| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 #include "net/http/http_util.h" | 164 #include "net/http/http_util.h" |
| 165 #include "ppapi/features/features.h" | 165 #include "ppapi/features/features.h" |
| 166 #include "services/service_manager/public/cpp/interface_provider.h" | 166 #include "services/service_manager/public/cpp/interface_provider.h" |
| 167 #include "services/service_manager/public/cpp/interface_registry.h" | 167 #include "services/service_manager/public/cpp/interface_registry.h" |
| 168 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" | 168 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" |
| 169 #include "storage/common/data_element.h" | 169 #include "storage/common/data_element.h" |
| 170 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 170 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 171 #include "third_party/WebKit/public/platform/URLConversion.h" | 171 #include "third_party/WebKit/public/platform/URLConversion.h" |
| 172 #include "third_party/WebKit/public/platform/WebCachePolicy.h" | 172 #include "third_party/WebKit/public/platform/WebCachePolicy.h" |
| 173 #include "third_party/WebKit/public/platform/WebData.h" | 173 #include "third_party/WebKit/public/platform/WebData.h" |
| 174 #include "third_party/WebKit/public/platform/WebKeyboardEvent.h" |
| 174 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 175 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 175 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" | 176 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" |
| 176 #include "third_party/WebKit/public/platform/WebPoint.h" | 177 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 177 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 178 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
| 178 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" | 179 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" |
| 179 #include "third_party/WebKit/public/platform/WebString.h" | 180 #include "third_party/WebKit/public/platform/WebString.h" |
| 180 #include "third_party/WebKit/public/platform/WebURL.h" | 181 #include "third_party/WebKit/public/platform/WebURL.h" |
| 181 #include "third_party/WebKit/public/platform/WebURLError.h" | 182 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 182 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 183 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 183 #include "third_party/WebKit/public/platform/WebVector.h" | 184 #include "third_party/WebKit/public/platform/WebVector.h" |
| (...skipping 6682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6866 // event target. Potentially a Pepper plugin will receive the event. | 6867 // event target. Potentially a Pepper plugin will receive the event. |
| 6867 // In order to tell whether a plugin gets the last mouse event and which it | 6868 // In order to tell whether a plugin gets the last mouse event and which it |
| 6868 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 6869 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets |
| 6869 // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 6870 // the event, it will notify us via DidReceiveMouseEvent() and set itself as |
| 6870 // |pepper_last_mouse_event_target_|. | 6871 // |pepper_last_mouse_event_target_|. |
| 6871 pepper_last_mouse_event_target_ = nullptr; | 6872 pepper_last_mouse_event_target_ = nullptr; |
| 6872 #endif | 6873 #endif |
| 6873 } | 6874 } |
| 6874 | 6875 |
| 6875 } // namespace content | 6876 } // namespace content |
| OLD | NEW |