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

Unified Diff: chrome/renderer/chrome_render_thread_observer.cc

Issue 2628323004: Fix a copy/pasto. (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/chrome_render_thread_observer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_render_thread_observer.cc
diff --git a/chrome/renderer/chrome_render_thread_observer.cc b/chrome/renderer/chrome_render_thread_observer.cc
index bd3836fb71a4b1a907889110e757afe3d711148a..32ed66bac4c4c75127ead53e4fdeea6ac4842ea0 100644
--- a/chrome/renderer/chrome_render_thread_observer.cc
+++ b/chrome/renderer/chrome_render_thread_observer.cc
@@ -279,9 +279,9 @@ ChromeRenderThreadObserver::~ChromeRenderThreadObserver() {}
void ChromeRenderThreadObserver::RegisterMojoInterfaces(
content::AssociatedInterfaceRegistry* associated_interfaces) {
- associated_interfaces->AddInterface(
- base::Bind(&ChromeRenderThreadObserver::OnRendererInterfaceRequest,
- base::Unretained(this)));
+ associated_interfaces->AddInterface(base::Bind(
+ &ChromeRenderThreadObserver::OnRendererConfigurationAssociatedRequest,
+ base::Unretained(this)));
}
void ChromeRenderThreadObserver::UnregisterMojoInterfaces(
@@ -331,7 +331,7 @@ void ChromeRenderThreadObserver::SetContentSettingRules(
content_setting_rules_ = rules;
}
-void ChromeRenderThreadObserver::OnRendererInterfaceRequest(
+void ChromeRenderThreadObserver::OnRendererConfigurationAssociatedRequest(
chrome::mojom::RendererConfigurationAssociatedRequest request) {
DCHECK(!renderer_configuration_binding_.is_bound());
renderer_configuration_binding_.Bind(std::move(request));
« no previous file with comments | « chrome/renderer/chrome_render_thread_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698