Add ICU message format support
[chromium-blink-merge.git] / ios / web / web_state / js / crw_js_early_script_manager.mm
blob655c52fcf1e1762ab43a9cdde694c7bf9f446380
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.
5 #import "ios/web/web_state/js/crw_js_early_script_manager.h"
7 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h"
8 #import "ios/web/web_state/js/page_script_util.h"
10 @implementation CRWJSEarlyScriptManager
12 - (NSString*)staticInjectionContent {
13   return web::GetEarlyPageScript(self.receiver.webViewType);
16 - (NSString*)presenceBeacon {
17   return @"__gCrWeb";
20 @end