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

Unified Diff: chrome/browser/ui/webui/input_window_dialog_webui.h

Issue 8438037: Change 'Add Page' to show a simple input dialog with --use-more-webui. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address comments Created 9 years, 1 month 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: chrome/browser/ui/webui/input_window_dialog_webui.h
diff --git a/chrome/browser/ui/webui/input_window_dialog_webui.h b/chrome/browser/ui/webui/input_window_dialog_webui.h
index 0e0af5c5c542bf8b49d20ca15f47186388953721..2c5fa1af0c52053c6550797e2f19fa8dc1136ce2 100644
--- a/chrome/browser/ui/webui/input_window_dialog_webui.h
+++ b/chrome/browser/ui/webui/input_window_dialog_webui.h
@@ -24,9 +24,8 @@ class InputWindowDialogWebUI : public InputWindowDialog,
private HtmlDialogUIDelegate {
public:
InputWindowDialogWebUI(const string16& window_title,
- const string16& label,
- const string16& contents,
- Delegate* delegate,
+ const LabelContentsPairs& label_contents_pairs,
+ InputWindowDialog::Delegate* delegate,
ButtonType type);
virtual ~InputWindowDialogWebUI();
@@ -52,8 +51,7 @@ class InputWindowDialogWebUI : public InputWindowDialog,
InputWindowDialogHandler* handler_;
string16 window_title_;
- string16 label_;
- string16 contents_;
+ LabelContentsPairs label_contents_pairs_;
bool closed_;
Delegate* delegate_;

Powered by Google App Engine
This is Rietveld 408576698