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

Unified Diff: chrome/browser/ui/passwords/password_ui_view.h

Issue 34393007: [Win] Add option to reauthenticate the OS user before revealing passwords. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@password
Patch Set: remove GetNativeWindow from OS_ANDROID Created 7 years 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/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_

Powered by Google App Engine
This is Rietveld 408576698