From d6d6d586d2a91d13d06a8bce53a2d03f2458f9c2 Mon Sep 17 00:00:00 2001 From: "sky@chromium.org" Date: Mon, 12 Oct 2009 19:22:26 +0000 Subject: Converts some uses of native_view to native_window. This is necessitated by wanting to parent bookmarkeditor to browserwindow, which returns a native_window. BUG=none TEST=none Review URL: http://codereview.chromium.org/270067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28728 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/input_window_dialog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/input_window_dialog.h') diff --git a/chrome/browser/input_window_dialog.h b/chrome/browser/input_window_dialog.h index e60e3f6..707c108 100644 --- a/chrome/browser/input_window_dialog.h +++ b/chrome/browser/input_window_dialog.h @@ -15,7 +15,7 @@ class InputWindowDialog { public: class Delegate { public: - virtual ~Delegate() { } + virtual ~Delegate() {} // Checks whether |text| is a valid input string. virtual bool IsValid(const std::wstring& text) = 0; @@ -29,7 +29,7 @@ class InputWindowDialog { // Creates a new input window dialog parented to |parent|. Ownership of // |delegate| is taken by InputWindowDialog or InputWindowDialog's owner. - static InputWindowDialog* Create(gfx::NativeView parent, + static InputWindowDialog* Create(gfx::NativeWindow parent, const std::wstring& window_title, const std::wstring& label, const std::wstring& contents, @@ -42,7 +42,7 @@ class InputWindowDialog { virtual void Close() = 0; protected: - InputWindowDialog() { } + InputWindowDialog() {} private: DISALLOW_COPY_AND_ASSIGN(InputWindowDialog); -- cgit v1.1