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

Unified Diff: ios/web/web_state/web_state_delegate_stub.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_stub.h ('k') | ios/web/web_state/web_state_impl.h » ('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_stub.mm
diff --git a/ios/web/web_state/web_state_delegate_stub.mm b/ios/web/web_state/web_state_delegate_stub.mm
new file mode 100644
index 0000000000000000000000000000000000000000..78a438ce0ceb46b95470aa245af5de06752e6fdd
--- /dev/null
+++ b/ios/web/web_state/web_state_delegate_stub.mm
@@ -0,0 +1,19 @@
+// 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/web_state/web_state_delegate_stub.h"
+
+#import "ios/web/public/web_state/web_state.h"
+
+@implementation CRWWebStateDelegateStub
+
+@synthesize webState = _webState;
+@synthesize changedProgress = _changedProgress;
+
+- (void)webState:(web::WebState*)webState didChangeProgress:(double)progress {
+ _webState = webState;
+ _changedProgress = progress;
+}
+
+@end
« no previous file with comments | « ios/web/web_state/web_state_delegate_stub.h ('k') | ios/web/web_state/web_state_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698