| Index: ios/web/web_state/web_state_delegate.mm
|
| diff --git a/ios/web/web_state/web_state_delegate.mm b/ios/web/web_state/web_state_delegate.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..516f155eb9c21d3d08c2fddd5e73027dbabd1525
|
| --- /dev/null
|
| +++ b/ios/web/web_state/web_state_delegate.mm
|
| @@ -0,0 +1,33 @@
|
| +// 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());
|
| +}
|
| +
|
| +void WebStateDelegate::LoadProgressChanged(WebState*, double) {}
|
| +
|
| +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
|
|
|