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

Unified Diff: ios/web/webui/crw_web_ui_manager.mm

Issue 2744963002: Introduce InterfaceEndpointClient(IEC), InterfaceEndpointHandle and (Closed)
Patch Set: Throw the error with the string being the stack trace needed to debug layouts which don't output an… Created 3 years, 9 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 | « ios/web/ios_web_resources.grd ('k') | ios/web/webui/mojo_js_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/webui/crw_web_ui_manager.mm
diff --git a/ios/web/webui/crw_web_ui_manager.mm b/ios/web/webui/crw_web_ui_manager.mm
index 320eb43c7f310589af897dff0837b97e70a8358b..e3ec4c0309b5cc82ca86fafab72851df2f5464bd 100644
--- a/ios/web/webui/crw_web_ui_manager.mm
+++ b/ios/web/webui/crw_web_ui_manager.mm
@@ -226,12 +226,23 @@ const char kScriptCommandPrefix[] = "webui";
{mojo::kUnicodeModuleName, IDR_MOJO_UNICODE_JS},
{mojo::kValidatorModuleName, IDR_MOJO_VALIDATOR_JS},
{web::kConsoleModuleName, IDR_IOS_CONSOLE_JS},
+ {web::kTimerModuleName, IDR_IOS_TIMER_JS},
{web::kCoreModuleName, IDR_IOS_MOJO_CORE_JS},
{web::kHandleUtilModuleName, IDR_IOS_MOJO_HANDLE_UTIL_JS},
{web::kInterfaceProviderModuleName, IDR_IOS_SHELL_INTERFACE_PROVIDER_JS},
{web::kSupportModuleName, IDR_IOS_MOJO_SUPPORT_JS},
{web::kSyncMessageChannelModuleName,
IDR_IOS_MOJO_SYNC_MESSAGE_CHANNEL_JS},
+ {mojo::kPipeControlMessagesMojom,
+ IDR_MOJO_PIPE_CONTROL_MESSAGES_MOJOM_JS},
+ {mojo::kInterfaceEndpointClientModuleName,
+ IDR_MOJO_INTERFACE_ENDPOINT_CLIENT_JS},
+ {mojo::kInterfaceEndpointHandleModuleName,
+ IDR_MOJO_INTERFACE_ENDPOINT_HANDLE_JS},
+ {mojo::kPipeControlMessageHandlerModuleName,
+ IDR_MOJO_PIPE_CONTROL_MESSAGE_HANDLER_JS},
+ {mojo::kPipeControlMessageProxyModuleName,
+ IDR_MOJO_PIPE_CONTROL_MESSAGE_PROXY_JS},
};
scoped_refptr<base::RefCountedMemory> scriptData(
web::GetWebClient()->GetDataResourceBytes(resource_map[moduleName]));
« no previous file with comments | « ios/web/ios_web_resources.grd ('k') | ios/web/webui/mojo_js_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698