Index: ios/web/web_state/js/crw_js_common_manager.mm |
diff --git a/ios/web/web_state/js/crw_js_common_manager.mm b/ios/web/web_state/js/crw_js_common_manager.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..82839d0592d1c93fd4473d53599d29a8a95649f6 |
--- /dev/null |
+++ b/ios/web/web_state/js/crw_js_common_manager.mm |
@@ -0,0 +1,26 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#import "ios/web/web_state/js/crw_js_common_manager.h" |
+ |
+#import "ios/web/public/web_state/js/crw_js_base_manager.h" |
+ |
+@implementation CRWJSCommonManager |
+ |
+#pragma mark - |
+#pragma mark ProtectedMethods |
+ |
+- (NSString*)scriptPath { |
+ return @"common"; |
+} |
+ |
+- (NSString*)presenceBeacon { |
+ return @"__gCrWeb.common"; |
+} |
+ |
+- (NSArray*)directDependencies { |
+ return @[ [CRWJSBaseManager class] ]; |
+} |
+ |
+@end |