diff options
Diffstat (limited to 'chrome/browser/input_window_dialog.h')
-rw-r--r-- | chrome/browser/input_window_dialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
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); |