| Index: chrome/browser/ui/passwords/password_ui_view.h
|
| diff --git a/chrome/browser/ui/passwords/password_ui_view.h b/chrome/browser/ui/passwords/password_ui_view.h
|
| index be925f8c297b5aae9775ef87bdaf6174c47f1c22..69b9dcad779c77d6043244fb95ef2e91dfb81d62 100644
|
| --- a/chrome/browser/ui/passwords/password_ui_view.h
|
| +++ b/chrome/browser/ui/passwords/password_ui_view.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_
|
|
|
| #include "base/memory/scoped_vector.h"
|
| +#include "ui/gfx/native_widget_types.h"
|
|
|
| namespace autofill {
|
| struct PasswordForm;
|
| @@ -39,6 +40,10 @@ class PasswordUIView {
|
| // |password_exception_list| The list of saved password exceptions.
|
| virtual void SetPasswordExceptionList(
|
| const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0;
|
| +#if !defined(OS_ANDROID)
|
| + // Returns the top level NativeWindow for the view.
|
| + virtual gfx::NativeWindow GetNativeWindow() = 0;
|
| +#endif
|
| };
|
|
|
| #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_
|
|
|