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

Unified Diff: ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h

Issue 2862783002: [iOS Clean] Wired up ContextMenuCommands. (Closed)
Patch Set: cleanup 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: ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h
diff --git a/ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h b/ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h
index 3ef41bc9ed30853b00678bf285aa2439875002f7..c5fa923ddca83ae26beca6ecd748343ab34b3606 100644
--- a/ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h
+++ b/ios/clean/chrome/browser/ui/context_menu/web_context_menu_coordinator.h
@@ -9,11 +9,20 @@
#import "ios/shared/chrome/browser/ui/coordinators/browser_coordinator.h"
+@class ContextMenuContextImpl;
+
// A coordinator for a UI element that displays the web view associated with
// |webState|.
// HACK: Named WebContentMenuCoordinator to avoid collision with the
// old architecture ContextMenuCoordinator class.
@interface WebContextMenuCoordinator : BrowserCoordinator
+
+// Initializer that takes the parameters used to specify which context menu
+// options to display.
+- (instancetype)initWithContext:(ContextMenuContextImpl*)context
+ NS_DESIGNATED_INITIALIZER;
+- (instancetype)init NS_UNAVAILABLE;
+
@end
#endif // IOS_CLEAN_CHROME_BROWSER_UI_WEB_CONTEXT_MENU_CONTEXT_MENU_COORDINATOR_H_

Powered by Google App Engine
This is Rietveld 408576698