diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-30 21:17:02 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-30 21:17:02 +0000 |
commit | 5ea7794d237835197543c63aafe299a77a766fe2 (patch) | |
tree | c7241dc29447f8278f5bab3e87f196add0756b07 /chrome/browser/shell_dialogs.h | |
parent | 272fe599bb86943b64b3b83d99e5bfd6b2531c28 (diff) | |
download | chromium_src-5ea7794d237835197543c63aafe299a77a766fe2.zip chromium_src-5ea7794d237835197543c63aafe299a77a766fe2.tar.gz chromium_src-5ea7794d237835197543c63aafe299a77a766fe2.tar.bz2 |
Random bits of de-Winification for WebContents.
Review URL: http://codereview.chromium.org/19721
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8987 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_dialogs.h')
-rw-r--r-- | chrome/browser/shell_dialogs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/shell_dialogs.h b/chrome/browser/shell_dialogs.h index de81210..cef931d 100644 --- a/chrome/browser/shell_dialogs.h +++ b/chrome/browser/shell_dialogs.h @@ -68,7 +68,7 @@ class SelectFileDialog 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 @@ class SelectFileDialog // 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 @@ class SelectFontDialog // 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. |