| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "content/common/content_constants_internal.h" | 43 #include "content/common/content_constants_internal.h" |
| 44 #include "content/common/content_switches_internal.h" | 44 #include "content/common/content_switches_internal.h" |
| 45 #include "content/common/database_messages.h" | 45 #include "content/common/database_messages.h" |
| 46 #include "content/common/dom_storage/dom_storage_types.h" | 46 #include "content/common/dom_storage/dom_storage_types.h" |
| 47 #include "content/common/drag_messages.h" | 47 #include "content/common/drag_messages.h" |
| 48 #include "content/common/frame_messages.h" | 48 #include "content/common/frame_messages.h" |
| 49 #include "content/common/frame_replication_state.h" | 49 #include "content/common/frame_replication_state.h" |
| 50 #include "content/common/input/input_event_utils.h" | 50 #include "content/common/input/input_event_utils.h" |
| 51 #include "content/common/input_messages.h" | 51 #include "content/common/input_messages.h" |
| 52 #include "content/common/page_messages.h" | 52 #include "content/common/page_messages.h" |
| 53 #include "content/common/pepper_messages.h" | |
| 54 #include "content/common/site_isolation_policy.h" | 53 #include "content/common/site_isolation_policy.h" |
| 55 #include "content/common/ssl_status_serialization.h" | 54 #include "content/common/ssl_status_serialization.h" |
| 56 #include "content/common/view_messages.h" | 55 #include "content/common/view_messages.h" |
| 57 #include "content/public/common/bindings_policy.h" | 56 #include "content/public/common/bindings_policy.h" |
| 58 #include "content/public/common/content_client.h" | 57 #include "content/public/common/content_client.h" |
| 59 #include "content/public/common/content_constants.h" | 58 #include "content/public/common/content_constants.h" |
| 60 #include "content/public/common/content_switches.h" | 59 #include "content/public/common/content_switches.h" |
| 61 #include "content/public/common/drop_data.h" | 60 #include "content/public/common/drop_data.h" |
| 62 #include "content/public/common/favicon_url.h" | 61 #include "content/public/common/favicon_url.h" |
| 63 #include "content/public/common/file_chooser_file_info.h" | 62 #include "content/public/common/file_chooser_file_info.h" |
| (...skipping 3327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3391 return render_frame->focused_pepper_plugin(); | 3390 return render_frame->focused_pepper_plugin(); |
| 3392 } | 3391 } |
| 3393 frame = frame->traverseNext(false); | 3392 frame = frame->traverseNext(false); |
| 3394 } | 3393 } |
| 3395 | 3394 |
| 3396 return nullptr; | 3395 return nullptr; |
| 3397 } | 3396 } |
| 3398 #endif | 3397 #endif |
| 3399 | 3398 |
| 3400 } // namespace content | 3399 } // namespace content |
| OLD | NEW |