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

Unified Diff: chrome/browser/importer/nss_decryptor_system_nss.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/importer/nss_decryptor_null.h ('k') | chrome/browser/importer/nss_decryptor_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/nss_decryptor_system_nss.h
diff --git a/chrome/browser/importer/nss_decryptor_system_nss.h b/chrome/browser/importer/nss_decryptor_system_nss.h
index c125da964c252c86576a8a548ae9d2612fdc410f..41c422763d6ad1e944bbc1ffbbc286bf7e5c18f2 100644
--- a/chrome/browser/importer/nss_decryptor_system_nss.h
+++ b/chrome/browser/importer/nss_decryptor_system_nss.h
@@ -12,7 +12,9 @@
#include "base/basictypes.h"
#include "base/string16.h"
+namespace base {
class FilePath;
+}
namespace content {
struct PasswordForm;
@@ -25,7 +27,7 @@ class NSSDecryptor {
~NSSDecryptor();
// Initializes NSS if it hasn't already been initialized.
- bool Init(const FilePath& dll_path, const FilePath& db_path);
+ bool Init(const base::FilePath& dll_path, const base::FilePath& db_path);
// Decrypts Firefox stored passwords. Before using this method,
// make sure Init() returns true.
@@ -40,7 +42,7 @@ class NSSDecryptor {
// Reads and parses the Firefox password sqlite db, decrypts the
// username/password and reads other related information.
// The result will be stored in |forms|.
- bool ReadAndParseSignons(const FilePath& sqlite_file,
+ bool ReadAndParseSignons(const base::FilePath& sqlite_file,
std::vector<content::PasswordForm>* forms);
private:
// Does not actually free the slot, since we'll free it when NSSDecryptor is
« no previous file with comments | « chrome/browser/importer/nss_decryptor_null.h ('k') | chrome/browser/importer/nss_decryptor_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698