| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "build/build_config.h" | 38 #include "build/build_config.h" |
| 39 #include "cc/base/switches.h" | 39 #include "cc/base/switches.h" |
| 40 #include "content/child/appcache/appcache_dispatcher.h" | 40 #include "content/child/appcache/appcache_dispatcher.h" |
| 41 #include "content/child/appcache/web_application_cache_host_impl.h" | 41 #include "content/child/appcache/web_application_cache_host_impl.h" |
| 42 #include "content/child/child_shared_bitmap_manager.h" | 42 #include "content/child/child_shared_bitmap_manager.h" |
| 43 #include "content/child/request_extra_data.h" | 43 #include "content/child/request_extra_data.h" |
| 44 #include "content/child/v8_value_converter_impl.h" | 44 #include "content/child/v8_value_converter_impl.h" |
| 45 #include "content/child/webmessageportchannel_impl.h" | 45 #include "content/child/webmessageportchannel_impl.h" |
| 46 #include "content/common/content_constants_internal.h" | 46 #include "content/common/content_constants_internal.h" |
| 47 #include "content/common/content_switches_internal.h" | 47 #include "content/common/content_switches_internal.h" |
| 48 #include "content/common/database_messages.h" | |
| 49 #include "content/common/dom_storage/dom_storage_types.h" | 48 #include "content/common/dom_storage/dom_storage_types.h" |
| 50 #include "content/common/drag_messages.h" | 49 #include "content/common/drag_messages.h" |
| 51 #include "content/common/frame_messages.h" | 50 #include "content/common/frame_messages.h" |
| 52 #include "content/common/frame_replication_state.h" | 51 #include "content/common/frame_replication_state.h" |
| 53 #include "content/common/input_messages.h" | 52 #include "content/common/input_messages.h" |
| 54 #include "content/common/page_messages.h" | 53 #include "content/common/page_messages.h" |
| 55 #include "content/common/site_isolation_policy.h" | 54 #include "content/common/site_isolation_policy.h" |
| 56 #include "content/common/ssl_status_serialization.h" | 55 #include "content/common/ssl_status_serialization.h" |
| 57 #include "content/common/view_messages.h" | 56 #include "content/common/view_messages.h" |
| 58 #include "content/public/common/bindings_policy.h" | 57 #include "content/public/common/bindings_policy.h" |
| (...skipping 3222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3281 return render_frame->focused_pepper_plugin(); | 3280 return render_frame->focused_pepper_plugin(); |
| 3282 } | 3281 } |
| 3283 frame = frame->traverseNext(false); | 3282 frame = frame->traverseNext(false); |
| 3284 } | 3283 } |
| 3285 | 3284 |
| 3286 return nullptr; | 3285 return nullptr; |
| 3287 } | 3286 } |
| 3288 #endif | 3287 #endif |
| 3289 | 3288 |
| 3290 } // namespace content | 3289 } // namespace content |
| OLD | NEW |