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

Unified Diff: ios/shared/chrome/browser/tabs/web_state_list_observer.mm

Issue 2708733003: WebStateListObserver methods have default implementation. (Closed)
Patch Set: Created 3 years, 10 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/shared/chrome/browser/tabs/web_state_list_observer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/shared/chrome/browser/tabs/web_state_list_observer.mm
diff --git a/ios/shared/chrome/browser/tabs/web_state_list_observer.mm b/ios/shared/chrome/browser/tabs/web_state_list_observer.mm
new file mode 100644
index 0000000000000000000000000000000000000000..a5c510c2c21920af200d89d12b453a0529ea6fec
--- /dev/null
+++ b/ios/shared/chrome/browser/tabs/web_state_list_observer.mm
@@ -0,0 +1,27 @@
+// Copyright 2017 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/shared/chrome/browser/tabs/web_state_list_observer.h"
+
+WebStateListObserver::WebStateListObserver() = default;
+
+WebStateListObserver::~WebStateListObserver() = default;
+
+void WebStateListObserver::WebStateInsertedAt(WebStateList* web_state_list,
+ web::WebState* web_state,
+ int index) {}
+
+void WebStateListObserver::WebStateMoved(WebStateList* web_state_list,
+ web::WebState* web_state,
+ int from_index,
+ int to_index) {}
+
+void WebStateListObserver::WebStateReplacedAt(WebStateList* web_state_list,
+ web::WebState* old_web_state,
+ web::WebState* new_web_state,
+ int index) {}
+
+void WebStateListObserver::WebStateDetachedAt(WebStateList* web_state_list,
+ web::WebState* web_state,
+ int index) {}
« no previous file with comments | « ios/shared/chrome/browser/tabs/web_state_list_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698