| Index: ios/web/web_state/web_state_delegate_bridge.mm
|
| diff --git a/ios/web/web_state/web_state_delegate_bridge.mm b/ios/web/web_state/web_state_delegate_bridge.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2ce0f6addda4e2a62963f3008ce39e11e1a02b4d
|
| --- /dev/null
|
| +++ b/ios/web/web_state/web_state_delegate_bridge.mm
|
| @@ -0,0 +1,22 @@
|
| +// 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_bridge.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace web {
|
| +
|
| +WebStateDelegateBridge::WebStateDelegateBridge(id<CRWWebStateDelegate> delegate)
|
| + : delegate_(delegate) {}
|
| +
|
| +WebStateDelegateBridge::~WebStateDelegateBridge() {}
|
| +
|
| +void WebStateDelegateBridge::LoadProgressChanged(WebState* source,
|
| + double progress) {
|
| + if ([delegate_ respondsToSelector:@selector(webState:didChangeProgress:)])
|
| + [delegate_ webState:source didChangeProgress:progress];
|
| +}
|
| +
|
| +} // web
|
|
|