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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2771233002: Remove the wrapper functions content::RecordAction et al (Closed)
Patch Set: Rebased Created 3 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/browser/frame_host/render_frame_host_impl.h" 5 #include "content/browser/frame_host/render_frame_host_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/containers/hash_tables.h" 12 #include "base/containers/hash_tables.h"
13 #include "base/lazy_instance.h" 13 #include "base/lazy_instance.h"
14 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
15 #include "base/metrics/histogram_macros.h" 15 #include "base/metrics/histogram_macros.h"
16 #include "base/metrics/user_metrics.h"
16 #include "base/process/kill.h" 17 #include "base/process/kill.h"
17 #include "base/time/time.h" 18 #include "base/time/time.h"
18 #include "build/build_config.h" 19 #include "build/build_config.h"
19 #include "content/browser/accessibility/browser_accessibility_manager.h" 20 #include "content/browser/accessibility/browser_accessibility_manager.h"
20 #include "content/browser/accessibility/browser_accessibility_state_impl.h" 21 #include "content/browser/accessibility/browser_accessibility_state_impl.h"
21 #include "content/browser/bluetooth/web_bluetooth_service_impl.h" 22 #include "content/browser/bluetooth/web_bluetooth_service_impl.h"
22 #include "content/browser/browser_main_loop.h" 23 #include "content/browser/browser_main_loop.h"
23 #include "content/browser/child_process_security_policy_impl.h" 24 #include "content/browser/child_process_security_policy_impl.h"
24 #include "content/browser/devtools/render_frame_devtools_agent_host.h" 25 #include "content/browser/devtools/render_frame_devtools_agent_host.h"
25 #include "content/browser/download/mhtml_generation_manager.h" 26 #include "content/browser/download/mhtml_generation_manager.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "content/public/browser/browser_plugin_guest_manager.h" 76 #include "content/public/browser/browser_plugin_guest_manager.h"
76 #include "content/public/browser/browser_thread.h" 77 #include "content/public/browser/browser_thread.h"
77 #include "content/public/browser/content_browser_client.h" 78 #include "content/public/browser/content_browser_client.h"
78 #include "content/public/browser/permission_manager.h" 79 #include "content/public/browser/permission_manager.h"
79 #include "content/public/browser/permission_type.h" 80 #include "content/public/browser/permission_type.h"
80 #include "content/public/browser/render_process_host.h" 81 #include "content/public/browser/render_process_host.h"
81 #include "content/public/browser/render_widget_host_view.h" 82 #include "content/public/browser/render_widget_host_view.h"
82 #include "content/public/browser/resource_context.h" 83 #include "content/public/browser/resource_context.h"
83 #include "content/public/browser/storage_partition.h" 84 #include "content/public/browser/storage_partition.h"
84 #include "content/public/browser/stream_handle.h" 85 #include "content/public/browser/stream_handle.h"
85 #include "content/public/browser/user_metrics.h"
86 #include "content/public/common/bindings_policy.h" 86 #include "content/public/common/bindings_policy.h"
87 #include "content/public/common/browser_side_navigation_policy.h" 87 #include "content/public/common/browser_side_navigation_policy.h"
88 #include "content/public/common/content_constants.h" 88 #include "content/public/common/content_constants.h"
89 #include "content/public/common/content_features.h" 89 #include "content/public/common/content_features.h"
90 #include "content/public/common/content_switches.h" 90 #include "content/public/common/content_switches.h"
91 #include "content/public/common/file_chooser_file_info.h" 91 #include "content/public/common/file_chooser_file_info.h"
92 #include "content/public/common/file_chooser_params.h" 92 #include "content/public/common/file_chooser_params.h"
93 #include "content/public/common/isolated_world_ids.h" 93 #include "content/public/common/isolated_world_ids.h"
94 #include "content/public/common/service_manager_connection.h" 94 #include "content/public/common/service_manager_connection.h"
95 #include "content/public/common/service_names.mojom.h" 95 #include "content/public/common/service_names.mojom.h"
(...skipping 3532 matching lines...) Expand 10 before | Expand all | Expand 10 after
3628 service_manager::mojom::InterfaceProviderPtr provider; 3628 service_manager::mojom::InterfaceProviderPtr provider;
3629 BindInterfaceRegistryForRenderFrameHost(mojo::MakeRequest(&provider), this); 3629 BindInterfaceRegistryForRenderFrameHost(mojo::MakeRequest(&provider), this);
3630 java_interfaces_.reset(new service_manager::InterfaceProvider); 3630 java_interfaces_.reset(new service_manager::InterfaceProvider);
3631 java_interfaces_->Bind(std::move(provider)); 3631 java_interfaces_->Bind(std::move(provider));
3632 } 3632 }
3633 return java_interfaces_.get(); 3633 return java_interfaces_.get();
3634 } 3634 }
3635 #endif 3635 #endif
3636 3636
3637 } // namespace content 3637 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl.cc ('k') | content/browser/frame_host/render_frame_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698