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/browser/frame_host/render_frame_host_impl.h" | 5 #include "content/browser/frame_host/render_frame_host_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 31 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
32 #include "content/browser/renderer_host/render_view_host_impl.h" | 32 #include "content/browser/renderer_host/render_view_host_impl.h" |
33 #include "content/browser/renderer_host/render_widget_host_impl.h" | 33 #include "content/browser/renderer_host/render_widget_host_impl.h" |
34 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 34 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
35 #include "content/browser/transition_request_manager.h" | 35 #include "content/browser/transition_request_manager.h" |
36 #include "content/common/accessibility_messages.h" | 36 #include "content/common/accessibility_messages.h" |
37 #include "content/common/desktop_notification_messages.h" | 37 #include "content/common/desktop_notification_messages.h" |
38 #include "content/common/frame_messages.h" | 38 #include "content/common/frame_messages.h" |
39 #include "content/common/input_messages.h" | 39 #include "content/common/input_messages.h" |
40 #include "content/common/inter_process_time_ticks_converter.h" | 40 #include "content/common/inter_process_time_ticks_converter.h" |
| 41 #include "content/common/navigation_params.h" |
41 #include "content/common/platform_notification_messages.h" | 42 #include "content/common/platform_notification_messages.h" |
42 #include "content/common/render_frame_setup.mojom.h" | 43 #include "content/common/render_frame_setup.mojom.h" |
43 #include "content/common/swapped_out_messages.h" | 44 #include "content/common/swapped_out_messages.h" |
44 #include "content/public/browser/ax_event_notification_details.h" | 45 #include "content/public/browser/ax_event_notification_details.h" |
45 #include "content/public/browser/browser_accessibility_state.h" | 46 #include "content/public/browser/browser_accessibility_state.h" |
46 #include "content/public/browser/browser_context.h" | 47 #include "content/public/browser/browser_context.h" |
47 #include "content/public/browser/browser_plugin_guest_manager.h" | 48 #include "content/public/browser/browser_plugin_guest_manager.h" |
48 #include "content/public/browser/browser_thread.h" | 49 #include "content/public/browser/browser_thread.h" |
49 #include "content/public/browser/content_browser_client.h" | 50 #include "content/public/browser/content_browser_client.h" |
50 #include "content/public/browser/desktop_notification_delegate.h" | 51 #include "content/public/browser/desktop_notification_delegate.h" |
(...skipping 1502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1553 // Clear any state if a pending navigation is canceled or preempted. | 1554 // Clear any state if a pending navigation is canceled or preempted. |
1554 if (suspended_nav_params_) | 1555 if (suspended_nav_params_) |
1555 suspended_nav_params_.reset(); | 1556 suspended_nav_params_.reset(); |
1556 | 1557 |
1557 TRACE_EVENT_ASYNC_END0("navigation", | 1558 TRACE_EVENT_ASYNC_END0("navigation", |
1558 "RenderFrameHostImpl navigation suspended", this); | 1559 "RenderFrameHostImpl navigation suspended", this); |
1559 navigations_suspended_ = false; | 1560 navigations_suspended_ = false; |
1560 } | 1561 } |
1561 | 1562 |
1562 } // namespace content | 1563 } // namespace content |
OLD | NEW |