| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" | 58 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
| 59 #include "content/browser/host_zoom_map_impl.h" | 59 #include "content/browser/host_zoom_map_impl.h" |
| 60 #include "content/browser/host_zoom_map_observer.h" | 60 #include "content/browser/host_zoom_map_observer.h" |
| 61 #include "content/browser/loader/loader_io_thread_notifier.h" | 61 #include "content/browser/loader/loader_io_thread_notifier.h" |
| 62 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 62 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 63 #include "content/browser/manifest/manifest_manager_host.h" | 63 #include "content/browser/manifest/manifest_manager_host.h" |
| 64 #include "content/browser/media/audio_stream_monitor.h" | 64 #include "content/browser/media/audio_stream_monitor.h" |
| 65 #include "content/browser/media/capture/web_contents_audio_muter.h" | 65 #include "content/browser/media/capture/web_contents_audio_muter.h" |
| 66 #include "content/browser/media/media_web_contents_observer.h" | 66 #include "content/browser/media/media_web_contents_observer.h" |
| 67 #include "content/browser/media/session/media_session_impl.h" | 67 #include "content/browser/media/session/media_session_impl.h" |
| 68 #include "content/browser/message_port_message_filter.h" | |
| 69 #include "content/browser/plugin_content_origin_whitelist.h" | 68 #include "content/browser/plugin_content_origin_whitelist.h" |
| 70 #include "content/browser/renderer_host/render_process_host_impl.h" | 69 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 71 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 70 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
| 72 #include "content/browser/renderer_host/render_view_host_impl.h" | 71 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 73 #include "content/browser/renderer_host/render_widget_host_impl.h" | 72 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 74 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" | 73 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
| 75 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 74 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 76 #include "content/browser/renderer_host/text_input_manager.h" | 75 #include "content/browser/renderer_host/text_input_manager.h" |
| 77 #include "content/browser/screen_orientation/screen_orientation_provider.h" | 76 #include "content/browser/screen_orientation/screen_orientation_provider.h" |
| 78 #include "content/browser/site_instance_impl.h" | 77 #include "content/browser/site_instance_impl.h" |
| (...skipping 5296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5375 GetMainFrame()->AddMessageToConsole( | 5374 GetMainFrame()->AddMessageToConsole( |
| 5376 content::CONSOLE_MESSAGE_LEVEL_WARNING, | 5375 content::CONSOLE_MESSAGE_LEVEL_WARNING, |
| 5377 base::StringPrintf("This site does not have a valid SSL " | 5376 base::StringPrintf("This site does not have a valid SSL " |
| 5378 "certificate! Without SSL, your site's and " | 5377 "certificate! Without SSL, your site's and " |
| 5379 "visitors' data is vulnerable to theft and " | 5378 "visitors' data is vulnerable to theft and " |
| 5380 "tampering. Get a valid SSL certificate before" | 5379 "tampering. Get a valid SSL certificate before" |
| 5381 " releasing your website to the public.")); | 5380 " releasing your website to the public.")); |
| 5382 } | 5381 } |
| 5383 | 5382 |
| 5384 } // namespace content | 5383 } // namespace content |
| OLD | NEW |