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

Side by Side Diff: chrome/browser/ui/input_window_dialog_mac.cc

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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/input_window_dialog_linux.cc ('k') | chrome/browser/ui/input_window_dialog_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698