| Index: extensions/renderer/runtime_custom_bindings.cc
|
| diff --git a/extensions/renderer/runtime_custom_bindings.cc b/extensions/renderer/runtime_custom_bindings.cc
|
| index 915abf8be4fb0d4a89b6beb8fd4c2e060bc80ea9..3e292139124fbce80314c8a5acb987dbca11878c 100644
|
| --- a/extensions/renderer/runtime_custom_bindings.cc
|
| +++ b/extensions/renderer/runtime_custom_bindings.cc
|
| @@ -32,10 +32,10 @@ RuntimeCustomBindings::RuntimeCustomBindings(ScriptContext* context)
|
| RouteFunction(
|
| "GetManifest",
|
| base::Bind(&RuntimeCustomBindings::GetManifest, base::Unretained(this)));
|
| - RouteFunction("OpenChannelToExtension",
|
| + RouteFunction("OpenChannelToExtension", "runtime.connect",
|
| base::Bind(&RuntimeCustomBindings::OpenChannelToExtension,
|
| base::Unretained(this)));
|
| - RouteFunction("OpenChannelToNativeApp",
|
| + RouteFunction("OpenChannelToNativeApp", "runtime.connectNative",
|
| base::Bind(&RuntimeCustomBindings::OpenChannelToNativeApp,
|
| base::Unretained(this)));
|
| RouteFunction("GetExtensionViews",
|
|
|