blob: 3532472b8f2b07b9acdf489aafaca91b3a822c27 [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/public/app/web_main_parts.h"
#include "ios/web/public/features.h"
#include "services/service_manager/public/cpp/service.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;
}
base::string16 WebClient::GetPluginNotSupportedText() const {
return base::string16();
}
std::string WebClient::GetUserAgent(UserAgentType type) const {
return std::string();
}
base::string16 WebClient::GetLocalizedString(int message_id) const {
return base::string16();
}
base::StringPiece WebClient::GetDataResource(
int resource_id,
ui::ScaleFactor scale_factor) const {
return base::StringPiece();
}
base::RefCountedMemory* WebClient::GetDataResourceBytes(int resource_id) const {
return nullptr;
}
NSString* WebClient::GetDocumentStartScriptForAllFrames(
BrowserState* browser_state) const {
return @"";
}
NSString* WebClient::GetDocumentStartScriptForMainFrame(
BrowserState* browser_state) const {
return @"";
}
std::unique_ptr<service_manager::Service> WebClient::HandleServiceRequest(
const std::string& service_name,
service_manager::mojom::ServiceRequest request) {
return nullptr;
}
base::Optional<service_manager::Manifest> WebClient::GetServiceManifestOverlay(
base::StringPiece name) {
return base::nullopt;
}
void WebClient::AllowCertificateError(
WebState* web_state,
int cert_error,
const net::SSLInfo& ssl_info,
const GURL& request_url,
bool overridable,
const base::Callback<void(bool)>& callback) {
callback.Run(false);
}
bool WebClient::IsSlimNavigationManagerEnabled() const {
return base::FeatureList::IsEnabled(web::features::kSlimNavigationManager);
}
void WebClient::PrepareErrorPage(WebState* web_state,
const GURL& url,
NSError* error,
bool is_post,
bool is_off_the_record,
NSString** error_html) {
DCHECK(error);
*error_html = error.localizedDescription;
}
} // namespace web