Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Side by Side Diff: content/browser/web_contents/web_contents_impl.cc

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Eliminate unnecessary PostTask Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 5330 matching lines...) Expand 10 before | Expand all | Expand 10 after
5408 GetMainFrame()->AddMessageToConsole( 5407 GetMainFrame()->AddMessageToConsole(
5409 content::CONSOLE_MESSAGE_LEVEL_WARNING, 5408 content::CONSOLE_MESSAGE_LEVEL_WARNING,
5410 base::StringPrintf("This site does not have a valid SSL " 5409 base::StringPrintf("This site does not have a valid SSL "
5411 "certificate! Without SSL, your site's and " 5410 "certificate! Without SSL, your site's and "
5412 "visitors' data is vulnerable to theft and " 5411 "visitors' data is vulnerable to theft and "
5413 "tampering. Get a valid SSL certificate before" 5412 "tampering. Get a valid SSL certificate before"
5414 " releasing your website to the public.")); 5413 " releasing your website to the public."));
5415 } 5414 }
5416 5415
5417 } // namespace content 5416 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698