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

Unified Diff: ios/web/web_state/web_state_delegate.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/ui/crw_web_controller.mm ('k') | ios/web/web_state/web_state_delegate_bridge.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.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
« no previous file with comments | « ios/web/web_state/ui/crw_web_controller.mm ('k') | ios/web/web_state/web_state_delegate_bridge.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698