| Index: chrome/browser/shell_dialogs.h
|
| ===================================================================
|
| --- chrome/browser/shell_dialogs.h (revision 8984)
|
| +++ chrome/browser/shell_dialogs.h (working copy)
|
| @@ -68,7 +68,7 @@
|
| static SelectFileDialog* Create(Listener* listener);
|
|
|
| // Selects a file. This will start displaying the dialog box. This will also
|
| - // block the calling HWND until the dialog box is complete. The listener
|
| + // block the calling window until the dialog box is complete. The listener
|
| // associated with this object will be notified when the selection is
|
| // complete.
|
| // |type| is the type of file dialog to be shown, see Type enumeration above.
|
| @@ -80,14 +80,14 @@
|
| // show.
|
| // |filter| is a null (\0) separated list of alternating filter description
|
| // and filters and terminated with two nulls.
|
| - // |owning_hwnd| is the window the dialog is modal to, or NULL for a modeless
|
| - // dialog.
|
| + // |owning_window| is the window the dialog is modal to, or NULL for a
|
| + // modeless dialog.
|
| // |default_extension| is the default extension to add to the file if the
|
| // user doesn't type one. This should NOT include the '.'. If you specify
|
| // this you must also specify a filter.
|
| // |params| is data from the calling context which will be passed through to
|
| // the listener. Can be NULL.
|
| - // NOTE: only one instance of any shell dialog can be shown per owning_hwnd
|
| + // NOTE: only one instance of any shell dialog can be shown per owning_window
|
| // at a time (for obvious reasons).
|
| virtual void SelectFile(Type type,
|
| const std::wstring& title,
|
| @@ -133,7 +133,7 @@
|
| // modeless dialog.
|
| // |params| is data from the calling context which will be passed through to
|
| // the listener. Can be NULL.
|
| - // NOTE: only one instance of any shell dialog can be shown per owning_hwnd
|
| + // NOTE: only one instance of any shell dialog can be shown per owning_window
|
| // at a time (for obvious reasons).
|
| // TODO(beng): support specifying the default font selected in the list when
|
| // the dialog appears.
|
|
|