| Index: extensions/renderer/dispatcher.cc
|
| diff --git a/extensions/renderer/dispatcher.cc b/extensions/renderer/dispatcher.cc
|
| index a8b66dfbdaeb0da3f77b92c65fd477cd5ee49ba5..af51684a3393c2edc012d34254899d7daf485cff 100644
|
| --- a/extensions/renderer/dispatcher.cc
|
| +++ b/extensions/renderer/dispatcher.cc
|
| @@ -500,8 +500,15 @@ std::vector<std::pair<std::string, int> > Dispatcher::GetJsResources() {
|
| IDR_UNCAUGHT_EXCEPTION_HANDLER_JS));
|
| resources.push_back(std::make_pair("unload_event", IDR_UNLOAD_EVENT_JS));
|
| resources.push_back(std::make_pair("utils", IDR_UTILS_JS));
|
| + // Note: webView not webview so that this doesn't interfere with the
|
| + // chrome.webview API bindings.
|
| + resources.push_back(std::make_pair("webView", IDR_WEB_VIEW_JS));
|
| + resources.push_back(std::make_pair("webViewEvents", IDR_WEB_VIEW_EVENTS_JS));
|
| + resources.push_back(
|
| + std::make_pair("webViewExperimental", IDR_WEB_VIEW_EXPERIMENTAL_JS));
|
| resources.push_back(std::make_pair("webViewInternal",
|
| IDR_WEB_VIEW_INTERNAL_CUSTOM_BINDINGS_JS));
|
| + resources.push_back(std::make_pair("denyWebView", IDR_WEB_VIEW_DENY_JS));
|
| resources.push_back(
|
| std::make_pair(mojo::kBufferModuleName, IDR_MOJO_BUFFER_JS));
|
| resources.push_back(
|
|
|