| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/input_window_dialog.h" | 5 #include "chrome/browser/input_window_dialog.h" |
| 6 | 6 |
| 7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
| 8 | 8 |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 const std::wstring& window_title, | 154 const std::wstring& window_title, |
| 155 const std::wstring& label, | 155 const std::wstring& label, |
| 156 const std::wstring& contents, | 156 const std::wstring& contents, |
| 157 Delegate* delegate) { | 157 Delegate* delegate) { |
| 158 return new GtkInputWindowDialog(parent, | 158 return new GtkInputWindowDialog(parent, |
| 159 WideToUTF8(window_title), | 159 WideToUTF8(window_title), |
| 160 WideToUTF8(label), | 160 WideToUTF8(label), |
| 161 WideToUTF8(contents), | 161 WideToUTF8(contents), |
| 162 delegate); | 162 delegate); |
| 163 } | 163 } |
| OLD | NEW |