Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2040)

Unified Diff: chrome/browser/input_window_dialog.h

Issue 270067: Converts some uses of native_view to native_window. This is necessitated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698