blob: 7628691e6752fbc8f3f2d2f76b59710e521a756a [file] [log] [blame]
// Copyright 2014 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/public/web_client.h"
#import <Foundation/Foundation.h>
#include "ios/web/common/features.h"
#include "ios/web/public/init/web_main_parts.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace web {
static WebClient* g_client;
void SetWebClient(WebClient* client) {
g_client = client;
}
WebClient* GetWebClient() {
return g_client;
}
WebClient::Schemes::Schemes() = default;
WebClient::Schemes::~Schemes() = default;
WebClient::WebClient() {}
WebClient::~WebClient() {}
std::unique_ptr<WebMainParts> WebClient::CreateWebMainParts() {
return nullptr;
}
std::string WebClient::GetApplicationLocale() const {
return "en-US";
}
bool WebClient::IsAppSpecificURL(const GURL& url) const {
return false;
}
std::u16string WebClient::GetPluginNotSupportedText() const {
return std::u16string();
}
std::string WebClient::GetUserAgent(UserAgentType type) const {
return std::string();
}
std::u16string WebClient::GetLocalizedString(int message_id) const {
return std::u16string();
}
base::StringPiece WebClient::GetDataResource(
int resource_id,
ui::ResourceScaleFactor scale_factor) const {
return base::StringPiece();
}
base::RefCountedMemory* WebClient::GetDataResourceBytes(int resource_id) const {
return nullptr;
}
std::vector<JavaScriptFeature*> WebClient::GetJavaScriptFeatures(
BrowserState* browser_state) const {
return std::vector<JavaScriptFeature*>();
}
NSString* WebClient::GetDocumentStartScriptForAllFrames(
BrowserState* browser_state) const {
return @"";
}
NSString* WebClient::GetDocumentStartScriptForMainFrame(
BrowserState* browser_state) const {
return @"";
}
void WebClient::PrepareErrorPage(WebState* web_state,
const GURL& url,
NSError* error,
bool is_post,
bool is_off_the_record,
const absl::optional<net::SSLInfo>& info,
int64_t navigation_id,
base::OnceCallback<void(NSString*)> callback) {
DCHECK(error);
std::move(callback).Run(error.localizedDescription);
}
UIView* WebClient::GetWindowedContainer() {
return nullptr;
}
bool WebClient::EnableLongPressAndForceTouchHandling() const {
return true;
}
bool WebClient::EnableLongPressUIContextMenu() const {
return false;
}
bool WebClient::RestoreSessionFromCache(web::WebState* web_state) const {
return false;
}
void WebClient::CleanupNativeRestoreURLs(web::WebState* web_state) const {}
void WebClient::WillDisplayMediaCapturePermissionPrompt(
web::WebState* web_state) const {}
UserAgentType WebClient::GetDefaultUserAgent(web::WebState* web_state,
const GURL& url) {
return UserAgentType::MOBILE;
}
} // namespace web