diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 23:36:30 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 23:36:30 +0000 |
commit | 0f44d3e778979b6f1acae43a39e4b4bf9d557c8b (patch) | |
tree | 8f37c45a6e7de25156fbaa7516373920d96a8500 /chrome/browser/shell_dialogs.h | |
parent | bd1d148d3f4888f715c2c9995d78b9294c35084b (diff) | |
download | chromium_src-0f44d3e778979b6f1acae43a39e4b4bf9d557c8b.zip chromium_src-0f44d3e778979b6f1acae43a39e4b4bf9d557c8b.tar.gz chromium_src-0f44d3e778979b6f1acae43a39e4b4bf9d557c8b.tar.bz2 |
Gtk dialogs, first cut.
Only the Save As file selection dialog is implemented for now.
Review URL: http://codereview.chromium.org/42152
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11594 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_dialogs.h')
-rw-r--r-- | chrome/browser/shell_dialogs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/shell_dialogs.h b/chrome/browser/shell_dialogs.h index bbc3bc7..d368a99 100644 --- a/chrome/browser/shell_dialogs.h +++ b/chrome/browser/shell_dialogs.h @@ -21,7 +21,7 @@ class BaseShellDialog { public: // Returns true if the a shell dialog box is currently being shown modally // to the specified owner. - virtual bool IsRunning(gfx::NativeView owning_window) const = 0; + virtual bool IsRunning(gfx::NativeWindow owning_window) const = 0; // Notifies the dialog box that the listener has been destroyed and it should // no longer be sent notifications. @@ -137,12 +137,12 @@ class SelectFontDialog // at a time (for obvious reasons). // TODO(beng): support specifying the default font selected in the list when // the dialog appears. - virtual void SelectFont(gfx::NativeView owning_window, + virtual void SelectFont(gfx::NativeWindow owning_window, void* params) = 0; // Same as above - also support specifying the default font selected in the // list when the dialog appears. - virtual void SelectFont(gfx::NativeView owning_window, + virtual void SelectFont(gfx::NativeWindow owning_window, void* params, const std::wstring& font_name, int font_size) = 0; |