OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 #import "ios/web/public/web_state/js/crw_js_message_manager.h" |
| 6 |
| 7 #import "ios/web/web_state/js/crw_js_common_manager.h" |
| 8 #import "ios/web/web_state/js/crw_js_message_dynamic_manager.h" |
| 9 |
| 10 @implementation CRWJSMessageManager |
| 11 |
| 12 - (NSString*)scriptPath { |
| 13 return @"message"; |
| 14 } |
| 15 |
| 16 - (NSString*)presenceBeacon { |
| 17 return @"__gCrWeb.message"; |
| 18 } |
| 19 |
| 20 - (NSArray*)directDependencies { |
| 21 // The 'base' manager is omitted deliberately; see <crbug.com/404640>. |
| 22 return @[ [CRWJSCommonManager class], [CRWJSMessageDynamicManager class] ]; |
| 23 } |
| 24 |
| 25 @end |
OLD | NEW |