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

Unified Diff: ios/clean/chrome/browser/ui/commands/overlay_commands.h

Issue 2921833002: [iOS Clean] Created OverlayService.
Patch Set: Cancel overlays on queue deallocation Created 3 years, 6 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: ios/clean/chrome/browser/ui/commands/overlay_commands.h
diff --git a/ios/clean/chrome/browser/ui/commands/overlay_commands.h b/ios/clean/chrome/browser/ui/commands/overlay_commands.h
new file mode 100644
index 0000000000000000000000000000000000000000..bc63728b1812386fa2a947c7ced5bba24df3fb19
--- /dev/null
+++ b/ios/clean/chrome/browser/ui/commands/overlay_commands.h
@@ -0,0 +1,36 @@
+// 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.
+
+#ifndef IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_OVERLAY_COMMANDS_H_
+#define IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_OVERLAY_COMMANDS_H_
+
+#import <Foundation/Foundation.h>
+
+namespace web {
+class WebState;
+}
+
+// Commands used to schedule overlay coordinators requested by web pages.
+@protocol OverlaySchedulerCommands<NSObject>
+// Notifies the scheduler that |webState| has a queued overlay coordinator to
+// display.
+- (void)scheduleOverlayForWebState:(web::WebState*)webState;
+// Notifies the scheduler that |webState|'s currently visible overlay has been
+// replaced by another coordinator.
+- (void)visibleOverlayWasReplacedForWebState:(web::WebState*)webState;
marq (ping after 24h) 2017/06/14 10:02:32 This feels more like something I'd expect in an ob
kkhorimoto 2017/06/15 08:26:28 I've converted this protocol to OverlayQueueObserv
+// Notifies the scheduler that the overlay that was started over |webState|'s
+// content area has been stopped.
+- (void)overlayWasStoppedForWebState:(web::WebState*)webState;
+// Notifies the scheduler to cancel all overlays scheduled for |webState|.
+- (void)cancelOverlaysForWebState:(web::WebState*)webState;
+@end
+
+// Commands used by the scheduler to start queued OverlayCoordinators.
+@protocol OverlayPresentationCommands<NSObject>
+// Called by the scheduler to notify the coordinator showing the web content to
+// start its next queued overlay.
+- (void)startNextOverlayForWebState:(web::WebState*)webState;
+@end
+
+#endif // IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_OVERLAY_COMMANDS_H_

Powered by Google App Engine
This is Rietveld 408576698