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

Unified Diff: chrome/browser/android/password_authentication_manager.h

Issue 641753002: Remove Password Authentication code that is no longer used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/android/password_authentication_manager.h
diff --git a/chrome/browser/android/password_authentication_manager.h b/chrome/browser/android/password_authentication_manager.h
deleted file mode 100644
index b0c57e23a890c1e01585976efde4ded55487376a..0000000000000000000000000000000000000000
--- a/chrome/browser/android/password_authentication_manager.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// 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_ANDROID_PASSWORD_AUTHENTICATION_MANAGER_H_
-#define CHROME_BROWSER_ANDROID_PASSWORD_AUTHENTICATION_MANAGER_H_
-
-#include "base/android/jni_android.h"
-#include "base/callback.h"
-#include "components/autofill/core/common/password_form_fill_data.h"
-
-namespace content {
-class WebContents;
-}
-
-// Manager for authenticating the use of stored passwords.
-class PasswordAuthenticationManager {
- public:
- // JNI registration
- static bool RegisterPasswordAuthenticationManager(JNIEnv* env);
-
- // Request an authentication challenge for the specified webcontents to allow
- // password autofill. If the authentication is successful, run the
- // |success_callback|.
- static void AuthenticatePasswordAutofill(
- content::WebContents* web_contents,
- const base::Closure& success_callback);
-
- private:
- PasswordAuthenticationManager();
- ~PasswordAuthenticationManager();
-
- DISALLOW_COPY_AND_ASSIGN(PasswordAuthenticationManager);
-};
-
-#endif // CHROME_BROWSER_ANDROID_PASSWORD_AUTHENTICATION_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698