| Index: chrome/browser/input_window_dialog.h
|
| ===================================================================
|
| --- chrome/browser/input_window_dialog.h (revision 28706)
|
| +++ chrome/browser/input_window_dialog.h (working copy)
|
| @@ -15,7 +15,7 @@
|
| 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 @@
|
|
|
| // 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 @@
|
| virtual void Close() = 0;
|
|
|
| protected:
|
| - InputWindowDialog() { }
|
| + InputWindowDialog() {}
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(InputWindowDialog);
|
|
|