OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ios/web/webui/mojo_js_constants.h" | 5 #include "ios/web/webui/mojo_js_constants.h" |
6 | 6 |
7 namespace web { | 7 namespace web { |
8 | 8 |
| 9 const char kConsoleModuleName[] = "console"; |
9 const char kSyncMessageChannelModuleName[] = | 10 const char kSyncMessageChannelModuleName[] = |
10 "ios/mojo/public/js/sync_message_channel"; | 11 "ios/mojo/public/js/sync_message_channel"; |
11 const char kHandleUtilModuleName[] = "ios/mojo/public/js/handle_util"; | 12 const char kHandleUtilModuleName[] = "ios/mojo/public/js/handle_util"; |
12 const char kSupportModuleName[] = "mojo/public/js/support"; | 13 const char kSupportModuleName[] = "mojo/public/js/support"; |
13 const char kCoreModuleName[] = "mojo/public/js/core"; | 14 const char kCoreModuleName[] = "mojo/public/js/core"; |
14 const char kInterfaceProviderModuleName[] = | 15 const char kInterfaceProviderModuleName[] = |
15 "content/public/renderer/frame_interfaces"; | 16 "content/public/renderer/frame_interfaces"; |
16 | 17 |
17 } // namespace web | 18 } // namespace web |
OLD | NEW |