| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/input_window_dialog.h" |
| 6 |
| 7 #include "chrome/browser/ui/webui/input_window_dialog_webui.h" |
| 8 |
| 9 InputWindowDialog* InputWindowDialog::Create( |
| 10 gfx::NativeWindow parent, |
| 11 const string16& window_title, |
| 12 const LabelContentsPairs& label_contents_pairs, |
| 13 Delegate* delegate, |
| 14 ButtonType type) { |
| 15 return new InputWindowDialogWebUI(window_title, |
| 16 label_contents_pairs, |
| 17 delegate, |
| 18 type); |
| 19 } |
| OLD | NEW |