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

Unified Diff: chrome/browser/password_manager/password_manager_driver.h

Issue 152643002: Create PasswordManagerDriver and ContentPasswordManagerDriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit Created 6 years, 11 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
« no previous file with comments | « chrome/browser/password_manager/password_manager_delegate_impl.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/password_manager_driver.h
diff --git a/chrome/browser/password_manager/password_manager_driver.h b/chrome/browser/password_manager/password_manager_driver.h
new file mode 100644
index 0000000000000000000000000000000000000000..cbed2a217910ff977d69652936a76e3210c56d4e
--- /dev/null
+++ b/chrome/browser/password_manager/password_manager_driver.h
@@ -0,0 +1,32 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_DRIVER_H_
+#define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_DRIVER_H_
+
+namespace autofill {
+struct PasswordFormFillData;
+} // namespace autofill
+
+// Interface that allows PasswordManager core code to interact with its driver
+// (i.e., obtain information from it and give information to it).
+class PasswordManagerDriver {
+ public:
+ PasswordManagerDriver() {}
+ virtual ~PasswordManagerDriver() {}
+
+ // Fills forms matching |form_data|.
+ virtual void FillPasswordForm(
+ const autofill::PasswordFormFillData& form_data) = 0;
+
+ // Returns whether any SSL certificate errors were encountered as a result of
+ // the last page load.
+ virtual bool DidLastPageLoadEncounterSSLErrors() = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PasswordManagerDriver);
+};
+
+
+#endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_DRIVER_H_
« no previous file with comments | « chrome/browser/password_manager/password_manager_delegate_impl.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698