Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Unified Diff: ios/web/web_state/web_state_delegate_bridge.mm

Issue 1851003003: [ios] Added web// public API to let embedder observe loading progress. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed compilation Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/web/web_state/web_state_delegate.mm ('k') | ios/web/web_state/web_state_delegate_bridge_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ios/web/web_state/web_state_delegate.mm ('k') | ios/web/web_state/web_state_delegate_bridge_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698