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

Side by Side Diff: ios/clean/chrome/browser/ui/dialogs/java_script_dialogs/java_script_dialog_coordinator.h

Issue 2928723002: [iOS Clean] Added JavaScript dialog support.
Patch Set: rebase & Mark's comments 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_DIALOGS_JAVA_SCRIPT_JAVA_SCRIPT_DIALOG_COORD INATOR_H_
6 #define IOS_CLEAN_CHROME_BROWSER_UI_DIALOGS_JAVA_SCRIPT_JAVA_SCRIPT_DIALOG_COORD INATOR_H_
7
8 #import <Foundation/Foundation.h>
9
10 #import "ios/clean/chrome/browser/ui/dialogs/dialog_coordinator.h"
11
12 @class JavaScriptDialogRequest;
13
14 // An overlay coordinator for the UI elements used to present JavaScript
15 // dialogs.
16 @interface JavaScriptDialogCoordinator : DialogCoordinator
17
18 // Designated initializer to display a JavaScript dialog for |request|.
19 - (instancetype)initWithRequest:(JavaScriptDialogRequest*)request
20 NS_DESIGNATED_INITIALIZER;
21 - (instancetype)init NS_UNAVAILABLE;
22
23 @end
24
25 #endif // IOS_CLEAN_CHROME_BROWSER_UI_DIALOGS_JAVA_SCRIPT_JAVA_SCRIPT_DIALOG_CO ORDINATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698