blob: c6a2def0144212b73d8446cb161233d1cd8c908f [file]
// Copyright 2016 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_state/web_state_delegate.h"
#import "ios/web/public/web_state/web_state.h"
namespace web {
WebStateDelegate::WebStateDelegate() {}
WebStateDelegate::~WebStateDelegate() {
while (!attached_states_.empty()) {
WebState* web_state = *attached_states_.begin();
web_state->SetDelegate(nullptr);
}
DCHECK(attached_states_.empty());
}
WebState* WebStateDelegate::CreateNewWebState(WebState* source,
const GURL& url,
const GURL& opener_url,
bool initiated_by_user) {
return nullptr;
}
void WebStateDelegate::CloseWebState(WebState* source) {}
WebState* WebStateDelegate::OpenURLFromWebState(
WebState*,
const WebState::OpenURLParams&) {
return nullptr;
}
bool WebStateDelegate::HandleContextMenu(WebState*, const ContextMenuParams&) {
return false;
}
void WebStateDelegate::ShowRepostFormWarningDialog(
WebState*,
const base::Callback<void(bool)>& callback) {
callback.Run(true);
}
JavaScriptDialogPresenter* WebStateDelegate::GetJavaScriptDialogPresenter(
WebState*) {
return nullptr;
}
void WebStateDelegate::OnAuthRequired(WebState* source,
NSURLProtectionSpace* protection_space,
NSURLCredential* proposed_credential,
const AuthCallback& callback) {
callback.Run(nil, nil);
}
void WebStateDelegate::Attach(WebState* source) {
DCHECK(attached_states_.find(source) == attached_states_.end());
attached_states_.insert(source);
}
void WebStateDelegate::Detach(WebState* source) {
DCHECK(attached_states_.find(source) != attached_states_.end());
attached_states_.erase(source);
}
} // web