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/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <cmath> | 9 #include <cmath> |
10 #include <utility> | 10 #include <utility> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
70 #include "content/browser/site_instance_impl.h" | 70 #include "content/browser/site_instance_impl.h" |
71 #include "content/browser/wake_lock/wake_lock_service_context.h" | 71 #include "content/browser/wake_lock/wake_lock_service_context.h" |
72 #include "content/browser/web_contents/web_contents_view_child_frame.h" | 72 #include "content/browser/web_contents/web_contents_view_child_frame.h" |
73 #include "content/browser/web_contents/web_contents_view_guest.h" | 73 #include "content/browser/web_contents/web_contents_view_guest.h" |
74 #include "content/browser/webui/generic_handler.h" | 74 #include "content/browser/webui/generic_handler.h" |
75 #include "content/browser/webui/web_ui_controller_factory_registry.h" | 75 #include "content/browser/webui/web_ui_controller_factory_registry.h" |
76 #include "content/browser/webui/web_ui_impl.h" | 76 #include "content/browser/webui/web_ui_impl.h" |
77 #include "content/common/browser_plugin/browser_plugin_constants.h" | 77 #include "content/common/browser_plugin/browser_plugin_constants.h" |
78 #include "content/common/browser_plugin/browser_plugin_messages.h" | 78 #include "content/common/browser_plugin/browser_plugin_messages.h" |
79 #include "content/common/frame_messages.h" | 79 #include "content/common/frame_messages.h" |
80 #include "content/common/input/web_input_event_traits.h" | |
tapted
2016/07/01 02:53:45
^ this (which I had in the .h earlier, but realis
| |
80 #include "content/common/input_messages.h" | 81 #include "content/common/input_messages.h" |
81 #include "content/common/page_messages.h" | 82 #include "content/common/page_messages.h" |
82 #include "content/common/site_isolation_policy.h" | 83 #include "content/common/site_isolation_policy.h" |
83 #include "content/common/ssl_status_serialization.h" | 84 #include "content/common/ssl_status_serialization.h" |
84 #include "content/common/view_messages.h" | 85 #include "content/common/view_messages.h" |
85 #include "content/public/browser/ax_event_notification_details.h" | 86 #include "content/public/browser/ax_event_notification_details.h" |
86 #include "content/public/browser/browser_context.h" | 87 #include "content/public/browser/browser_context.h" |
87 #include "content/public/browser/browser_plugin_guest_manager.h" | 88 #include "content/public/browser/browser_plugin_guest_manager.h" |
88 #include "content/public/browser/content_browser_client.h" | 89 #include "content/public/browser/content_browser_client.h" |
89 #include "content/public/browser/devtools_agent_host.h" | 90 #include "content/public/browser/devtools_agent_host.h" |
(...skipping 5036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5126 for (RenderViewHost* render_view_host : render_view_host_set) | 5127 for (RenderViewHost* render_view_host : render_view_host_set) |
5127 render_view_host->OnWebkitPreferencesChanged(); | 5128 render_view_host->OnWebkitPreferencesChanged(); |
5128 } | 5129 } |
5129 | 5130 |
5130 void WebContentsImpl::SetJavaScriptDialogManagerForTesting( | 5131 void WebContentsImpl::SetJavaScriptDialogManagerForTesting( |
5131 JavaScriptDialogManager* dialog_manager) { | 5132 JavaScriptDialogManager* dialog_manager) { |
5132 dialog_manager_ = dialog_manager; | 5133 dialog_manager_ = dialog_manager; |
5133 } | 5134 } |
5134 | 5135 |
5135 } // namespace content | 5136 } // namespace content |
OLD | NEW |