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

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

Issue 1567022: Implement LoginDatabase on all platforms. (Closed)
Patch Set: Update Created 10 years, 9 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/password_manager/login_database_mac.h
diff --git a/chrome/browser/password_manager/login_database_mac.h b/chrome/browser/password_manager/login_database_mac.h
deleted file mode 100644
index 9c6e93ef8c2d7bf39e47ee9a5360349e47138ee3..0000000000000000000000000000000000000000
--- a/chrome/browser/password_manager/login_database_mac.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2009 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_LOGIN_DATABASE_MAC_H_
-#define CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_MAC_H_
-
-#include "chrome/browser/password_manager/login_database.h"
-
-#include <string>
-
-// A trivial subclass of LoginDatabase that nulls out passwords, so that we can
-// use the rest of the database as a suplemental storage system to complement
-// Keychain, providing storage of fields Keychain doesn't allow for.
-class LoginDatabaseMac : public LoginDatabase {
- public:
- LoginDatabaseMac() {}
- virtual ~LoginDatabaseMac() {}
-
- protected:
- // Stub implementations that always return an empty string.
- virtual std::string EncryptedString(const string16& plain_text) const;
- virtual string16 DecryptedString(const std::string& cipher_text) const;
-};
-
-
-#endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_MAC_H_
« no previous file with comments | « chrome/browser/password_manager/login_database.cc ('k') | chrome/browser/password_manager/login_database_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698