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

Unified Diff: components/reading_list/ios/reading_list_model_bridge_observer.h

Issue 2863303002: Fixes a DCHECK in tools_menu_button_observer_bridge during tests (Closed)
Patch Set: delete unnecessary implementation of Shutdown() Created 3 years, 7 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
Index: components/reading_list/ios/reading_list_model_bridge_observer.h
diff --git a/components/reading_list/ios/reading_list_model_bridge_observer.h b/components/reading_list/ios/reading_list_model_bridge_observer.h
index 9b34e4939dd73f0d9dcfea76a5eda4857d93f611..33a433ec5b27f99f1899159dae5c116d4808925c 100644
--- a/components/reading_list/ios/reading_list_model_bridge_observer.h
+++ b/components/reading_list/ios/reading_list_model_bridge_observer.h
@@ -36,6 +36,7 @@
- (void)readingListModelBeganBatchUpdates:(const ReadingListModel*)model;
- (void)readingListModelCompletedBatchUpdates:(const ReadingListModel*)model;
+- (void)readingListModelBeingShutdown:(const ReadingListModel*)model;
- (void)readingListModelBeingDeleted:(const ReadingListModel*)model;
- (void)readingListModel:(const ReadingListModel*)model
@@ -58,6 +59,7 @@ class ReadingListModelBridge : public ReadingListModelObserver {
void ReadingListModelCompletedBatchUpdates(
const ReadingListModel* model) override;
void ReadingListModelLoaded(const ReadingListModel* model) override;
+ void ReadingListModelBeingShutdown(const ReadingListModel* model) override;
void ReadingListModelBeingDeleted(const ReadingListModel* model) override;
void ReadingListWillRemoveEntry(const ReadingListModel* model,
const GURL& url) override;

Powered by Google App Engine
This is Rietveld 408576698