| Index: chrome/renderer/extensions/automation_internal_custom_bindings.cc
|
| diff --git a/chrome/renderer/extensions/automation_internal_custom_bindings.cc b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
|
| index 8f1d31e6af52bf3002ea63a8b4e8ead4830b1b24..090971a64ff04e53e9a3e4933c742515453b7026 100644
|
| --- a/chrome/renderer/extensions/automation_internal_custom_bindings.cc
|
| +++ b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
|
| @@ -418,10 +418,10 @@ AutomationInternalCustomBindings::AutomationInternalCustomBindings(
|
| // It's safe to use base::Unretained(this) here because these bindings
|
| // will only be called on a valid AutomationInternalCustomBindings instance
|
| // and none of the functions have any side effects.
|
| - #define ROUTE_FUNCTION(FN) \
|
| - RouteFunction(#FN, \
|
| +#define ROUTE_FUNCTION(FN) \
|
| + RouteFunction(#FN, "automation", \
|
| base::Bind(&AutomationInternalCustomBindings::FN, \
|
| - base::Unretained(this)))
|
| + base::Unretained(this)))
|
| ROUTE_FUNCTION(IsInteractPermitted);
|
| ROUTE_FUNCTION(GetSchemaAdditions);
|
| ROUTE_FUNCTION(GetRoutingID);
|
|
|