Index: chrome/browser/ui/input_window_dialog_linux.cc |
diff --git a/chrome/browser/ui/input_window_dialog_linux.cc b/chrome/browser/ui/input_window_dialog_linux.cc |
index 0109a2c8d225894bdafca7da5ebba2fa4c503480..7fe38f41b3c778604c5dca3db5fc667ea625564f 100644 |
--- a/chrome/browser/ui/input_window_dialog_linux.cc |
+++ b/chrome/browser/ui/input_window_dialog_linux.cc |
@@ -16,24 +16,20 @@ InputWindowDialog* InputWindowDialog::Create(gfx::NativeWindow parent, |
const string16& window_title, |
const string16& label, |
const string16& contents, |
- Delegate* delegate) { |
+ Delegate* delegate, |
+ bool is_new) { |
#if defined(USE_AURA) |
- return new InputWindowDialogWebUI(window_title, |
- label, |
- contents, |
- delegate); |
+ return new InputWindowDialogWebUI(window_title, label, contents, delegate); |
#else |
if (ChromeWebUI::IsMoreWebUI()) { |
- return new InputWindowDialogWebUI(window_title, |
- label, |
- contents, |
- delegate); |
+ return new InputWindowDialogWebUI(window_title, label, contents, delegate); |
} else { |
return new InputWindowDialogGtk(parent, |
UTF16ToUTF8(window_title), |
UTF16ToUTF8(label), |
UTF16ToUTF8(contents), |
- delegate); |
+ delegate, |
+ is_new); |
} |
#endif |
} |