| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ios/web/webui/mojo_js_constants.h" | |
| 6 | |
| 7 namespace web { | |
| 8 | |
| 9 const char kConsoleModuleName[] = "console"; | |
| 10 const char kSyncMessageChannelModuleName[] = | |
| 11 "ios/mojo/public/js/sync_message_channel"; | |
| 12 const char kHandleUtilModuleName[] = "ios/mojo/public/js/handle_util"; | |
| 13 const char kSupportModuleName[] = "mojo/public/js/support"; | |
| 14 const char kCoreModuleName[] = "mojo/public/js/core"; | |
| 15 const char kInterfaceProviderModuleName[] = | |
| 16 "content/public/renderer/frame_interfaces"; | |
| 17 const char kTimerModuleName[] = "timer"; | |
| 18 | |
| 19 } // namespace web | |
| OLD | NEW |