OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/ui/input_window_dialog.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "app/gtk_signal.h" | 9 #include "app/gtk_signal.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
12 #include "base/string_piece.h" | 12 #include "base/string_piece.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "chrome/browser/gtk/gtk_util.h" | 14 #include "chrome/browser/gtk/gtk_util.h" |
15 | 15 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 const std::wstring& window_title, | 137 const std::wstring& window_title, |
138 const std::wstring& label, | 138 const std::wstring& label, |
139 const std::wstring& contents, | 139 const std::wstring& contents, |
140 Delegate* delegate) { | 140 Delegate* delegate) { |
141 return new InputWindowDialogGtk(parent, | 141 return new InputWindowDialogGtk(parent, |
142 WideToUTF8(window_title), | 142 WideToUTF8(window_title), |
143 WideToUTF8(label), | 143 WideToUTF8(label), |
144 WideToUTF8(contents), | 144 WideToUTF8(contents), |
145 delegate); | 145 delegate); |
146 } | 146 } |
OLD | NEW |