| 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 15 matching lines...) Expand all  Loading... | 
| 26 #include "base/metrics/histogram.h" | 26 #include "base/metrics/histogram.h" | 
| 27 #include "base/process/process.h" | 27 #include "base/process/process.h" | 
| 28 #include "base/stl_util.h" | 28 #include "base/stl_util.h" | 
| 29 #include "base/strings/string16.h" | 29 #include "base/strings/string16.h" | 
| 30 #include "base/strings/utf_string_conversions.h" | 30 #include "base/strings/utf_string_conversions.h" | 
| 31 #include "base/threading/thread_task_runner_handle.h" | 31 #include "base/threading/thread_task_runner_handle.h" | 
| 32 #include "base/time/time.h" | 32 #include "base/time/time.h" | 
| 33 #include "base/trace_event/trace_event_argument.h" | 33 #include "base/trace_event/trace_event_argument.h" | 
| 34 #include "build/build_config.h" | 34 #include "build/build_config.h" | 
| 35 #include "cc/base/switches.h" | 35 #include "cc/base/switches.h" | 
| 36 #include "components/scheduler/renderer/renderer_scheduler.h" |  | 
| 37 #include "content/child/appcache/appcache_dispatcher.h" | 36 #include "content/child/appcache/appcache_dispatcher.h" | 
| 38 #include "content/child/quota_dispatcher.h" | 37 #include "content/child/quota_dispatcher.h" | 
| 39 #include "content/child/request_extra_data.h" | 38 #include "content/child/request_extra_data.h" | 
| 40 #include "content/child/service_worker/service_worker_handle_reference.h" | 39 #include "content/child/service_worker/service_worker_handle_reference.h" | 
| 41 #include "content/child/service_worker/service_worker_network_provider.h" | 40 #include "content/child/service_worker/service_worker_network_provider.h" | 
| 42 #include "content/child/service_worker/service_worker_provider_context.h" | 41 #include "content/child/service_worker/service_worker_provider_context.h" | 
| 43 #include "content/child/service_worker/web_service_worker_provider_impl.h" | 42 #include "content/child/service_worker/web_service_worker_provider_impl.h" | 
| 44 #include "content/child/v8_value_converter_impl.h" | 43 #include "content/child/v8_value_converter_impl.h" | 
| 45 #include "content/child/web_url_loader_impl.h" | 44 #include "content/child/web_url_loader_impl.h" | 
| 46 #include "content/child/web_url_request_util.h" | 45 #include "content/child/web_url_request_util.h" | 
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 164 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 163 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 
| 165 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" | 164 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" | 
| 166 #include "third_party/WebKit/public/platform/WebPoint.h" | 165 #include "third_party/WebKit/public/platform/WebPoint.h" | 
| 167 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 166 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 
| 168 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" | 167 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" | 
| 169 #include "third_party/WebKit/public/platform/WebString.h" | 168 #include "third_party/WebKit/public/platform/WebString.h" | 
| 170 #include "third_party/WebKit/public/platform/WebURL.h" | 169 #include "third_party/WebKit/public/platform/WebURL.h" | 
| 171 #include "third_party/WebKit/public/platform/WebURLError.h" | 170 #include "third_party/WebKit/public/platform/WebURLError.h" | 
| 172 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 171 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 
| 173 #include "third_party/WebKit/public/platform/WebVector.h" | 172 #include "third_party/WebKit/public/platform/WebVector.h" | 
|  | 173 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
      er.h" | 
| 174 #include "third_party/WebKit/public/web/WebColorSuggestion.h" | 174 #include "third_party/WebKit/public/web/WebColorSuggestion.h" | 
| 175 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 175 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 
| 176 #include "third_party/WebKit/public/web/WebDocument.h" | 176 #include "third_party/WebKit/public/web/WebDocument.h" | 
| 177 #include "third_party/WebKit/public/web/WebFindOptions.h" | 177 #include "third_party/WebKit/public/web/WebFindOptions.h" | 
| 178 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" | 178 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" | 
| 179 #include "third_party/WebKit/public/web/WebFrameSerializer.h" | 179 #include "third_party/WebKit/public/web/WebFrameSerializer.h" | 
| 180 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h" | 180 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h" | 
| 181 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 181 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 
| 182 #include "third_party/WebKit/public/web/WebKit.h" | 182 #include "third_party/WebKit/public/web/WebKit.h" | 
| 183 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 183 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 
| (...skipping 6163 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 6347   // event target. Potentially a Pepper plugin will receive the event. | 6347   // event target. Potentially a Pepper plugin will receive the event. | 
| 6348   // In order to tell whether a plugin gets the last mouse event and which it | 6348   // In order to tell whether a plugin gets the last mouse event and which it | 
| 6349   // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 6349   // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 
| 6350   // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 6350   // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 
| 6351   // |pepper_last_mouse_event_target_|. | 6351   // |pepper_last_mouse_event_target_|. | 
| 6352   pepper_last_mouse_event_target_ = nullptr; | 6352   pepper_last_mouse_event_target_ = nullptr; | 
| 6353 #endif | 6353 #endif | 
| 6354 } | 6354 } | 
| 6355 | 6355 | 
| 6356 }  // namespace content | 6356 }  // namespace content | 
| OLD | NEW | 
|---|