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

Side by Side Diff: content/renderer/render_frame_impl.cc

Issue 1838903007: media: Add mojo MediaPermission service Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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/renderer/render_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "content/child/web_url_loader_impl.h" 45 #include "content/child/web_url_loader_impl.h"
46 #include "content/child/web_url_request_util.h" 46 #include "content/child/web_url_request_util.h"
47 #include "content/child/webmessageportchannel_impl.h" 47 #include "content/child/webmessageportchannel_impl.h"
48 #include "content/child/websocket_bridge.h" 48 #include "content/child/websocket_bridge.h"
49 #include "content/child/weburlresponse_extradata_impl.h" 49 #include "content/child/weburlresponse_extradata_impl.h"
50 #include "content/common/accessibility_messages.h" 50 #include "content/common/accessibility_messages.h"
51 #include "content/common/clipboard_messages.h" 51 #include "content/common/clipboard_messages.h"
52 #include "content/common/frame_messages.h" 52 #include "content/common/frame_messages.h"
53 #include "content/common/frame_replication_state.h" 53 #include "content/common/frame_replication_state.h"
54 #include "content/common/input_messages.h" 54 #include "content/common/input_messages.h"
55 #include "content/common/media/media_permission_dispatcher.h"
55 #include "content/common/navigation_params.h" 56 #include "content/common/navigation_params.h"
56 #include "content/common/page_messages.h" 57 #include "content/common/page_messages.h"
57 #include "content/common/savable_subframe.h" 58 #include "content/common/savable_subframe.h"
58 #include "content/common/service_worker/service_worker_types.h" 59 #include "content/common/service_worker/service_worker_types.h"
59 #include "content/common/site_isolation_policy.h" 60 #include "content/common/site_isolation_policy.h"
60 #include "content/common/ssl_status_serialization.h" 61 #include "content/common/ssl_status_serialization.h"
61 #include "content/common/swapped_out_messages.h" 62 #include "content/common/swapped_out_messages.h"
62 #include "content/common/view_messages.h" 63 #include "content/common/view_messages.h"
63 #include "content/public/common/bindings_policy.h" 64 #include "content/public/common/bindings_policy.h"
64 #include "content/public/common/browser_side_navigation_policy.h" 65 #include "content/public/common/browser_side_navigation_policy.h"
(...skipping 23 matching lines...) Expand all
88 #include "content/renderer/external_popup_menu.h" 89 #include "content/renderer/external_popup_menu.h"
89 #include "content/renderer/geolocation_dispatcher.h" 90 #include "content/renderer/geolocation_dispatcher.h"
90 #include "content/renderer/gpu/gpu_benchmarking_extension.h" 91 #include "content/renderer/gpu/gpu_benchmarking_extension.h"
91 #include "content/renderer/history_controller.h" 92 #include "content/renderer/history_controller.h"
92 #include "content/renderer/history_serialization.h" 93 #include "content/renderer/history_serialization.h"
93 #include "content/renderer/image_downloader/image_downloader_impl.h" 94 #include "content/renderer/image_downloader/image_downloader_impl.h"
94 #include "content/renderer/ime_event_guard.h" 95 #include "content/renderer/ime_event_guard.h"
95 #include "content/renderer/internal_document_state_data.h" 96 #include "content/renderer/internal_document_state_data.h"
96 #include "content/renderer/manifest/manifest_manager.h" 97 #include "content/renderer/manifest/manifest_manager.h"
97 #include "content/renderer/media/audio_device_factory.h" 98 #include "content/renderer/media/audio_device_factory.h"
98 #include "content/renderer/media/media_permission_dispatcher.h"
99 #include "content/renderer/media/media_stream_dispatcher.h" 99 #include "content/renderer/media/media_stream_dispatcher.h"
100 #include "content/renderer/media/media_stream_renderer_factory_impl.h" 100 #include "content/renderer/media/media_stream_renderer_factory_impl.h"
101 #include "content/renderer/media/midi_dispatcher.h" 101 #include "content/renderer/media/midi_dispatcher.h"
102 #include "content/renderer/media/render_media_log.h" 102 #include "content/renderer/media/render_media_log.h"
103 #include "content/renderer/media/renderer_webmediaplayer_delegate.h" 103 #include "content/renderer/media/renderer_webmediaplayer_delegate.h"
104 #include "content/renderer/media/user_media_client_impl.h" 104 #include "content/renderer/media/user_media_client_impl.h"
105 #include "content/renderer/media/webmediaplayer_ms.h" 105 #include "content/renderer/media/webmediaplayer_ms.h"
106 #include "content/renderer/mojo/service_registry_js_wrapper.h" 106 #include "content/renderer/mojo/service_registry_js_wrapper.h"
107 #include "content/renderer/mojo_bindings_controller.h" 107 #include "content/renderer/mojo_bindings_controller.h"
108 #include "content/renderer/navigation_state_impl.h" 108 #include "content/renderer/navigation_state_impl.h"
(...skipping 5902 matching lines...) Expand 10 before | Expand all | Expand 10 after
6011 int match_count, 6011 int match_count,
6012 int ordinal, 6012 int ordinal,
6013 const WebRect& selection_rect, 6013 const WebRect& selection_rect,
6014 bool final_status_update) { 6014 bool final_status_update) {
6015 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, 6015 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count,
6016 selection_rect, ordinal, 6016 selection_rect, ordinal,
6017 final_status_update)); 6017 final_status_update));
6018 } 6018 }
6019 6019
6020 } // namespace content 6020 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698