| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" | 57 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
| 58 #include "content/browser/host_zoom_map_impl.h" | 58 #include "content/browser/host_zoom_map_impl.h" |
| 59 #include "content/browser/host_zoom_map_observer.h" | 59 #include "content/browser/host_zoom_map_observer.h" |
| 60 #include "content/browser/loader/loader_io_thread_notifier.h" | 60 #include "content/browser/loader/loader_io_thread_notifier.h" |
| 61 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 61 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 62 #include "content/browser/manifest/manifest_manager_host.h" | 62 #include "content/browser/manifest/manifest_manager_host.h" |
| 63 #include "content/browser/media/audio_stream_monitor.h" | 63 #include "content/browser/media/audio_stream_monitor.h" |
| 64 #include "content/browser/media/capture/web_contents_audio_muter.h" | 64 #include "content/browser/media/capture/web_contents_audio_muter.h" |
| 65 #include "content/browser/media/media_web_contents_observer.h" | 65 #include "content/browser/media/media_web_contents_observer.h" |
| 66 #include "content/browser/media/session/media_session_impl.h" | 66 #include "content/browser/media/session/media_session_impl.h" |
| 67 #include "content/browser/message_port_message_filter.h" | |
| 68 #include "content/browser/plugin_content_origin_whitelist.h" | 67 #include "content/browser/plugin_content_origin_whitelist.h" |
| 69 #include "content/browser/renderer_host/render_process_host_impl.h" | 68 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 70 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 69 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
| 71 #include "content/browser/renderer_host/render_view_host_impl.h" | 70 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 72 #include "content/browser/renderer_host/render_widget_host_impl.h" | 71 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 73 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" | 72 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
| 74 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 73 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 75 #include "content/browser/renderer_host/text_input_manager.h" | 74 #include "content/browser/renderer_host/text_input_manager.h" |
| 76 #include "content/browser/screen_orientation/screen_orientation.h" | 75 #include "content/browser/screen_orientation/screen_orientation.h" |
| 77 #include "content/browser/site_instance_impl.h" | 76 #include "content/browser/site_instance_impl.h" |
| (...skipping 5318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5396 GetMainFrame()->AddMessageToConsole( | 5395 GetMainFrame()->AddMessageToConsole( |
| 5397 content::CONSOLE_MESSAGE_LEVEL_WARNING, | 5396 content::CONSOLE_MESSAGE_LEVEL_WARNING, |
| 5398 base::StringPrintf("This site does not have a valid SSL " | 5397 base::StringPrintf("This site does not have a valid SSL " |
| 5399 "certificate! Without SSL, your site's and " | 5398 "certificate! Without SSL, your site's and " |
| 5400 "visitors' data is vulnerable to theft and " | 5399 "visitors' data is vulnerable to theft and " |
| 5401 "tampering. Get a valid SSL certificate before" | 5400 "tampering. Get a valid SSL certificate before" |
| 5402 " releasing your website to the public.")); | 5401 " releasing your website to the public.")); |
| 5403 } | 5402 } |
| 5404 | 5403 |
| 5405 } // namespace content | 5404 } // namespace content |
| OLD | NEW |