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

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

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 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
« no previous file with comments | « chrome/browser/importer/nss_decryptor_mac.h ('k') | chrome/browser/importer/nss_decryptor_system_nss.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/nss_decryptor_null.h
diff --git a/chrome/browser/importer/nss_decryptor_null.h b/chrome/browser/importer/nss_decryptor_null.h
index af725c1933c67798af2883036ce02ab62103f8f8..e82d1a6c44572921b3581f7c206ec21796794a39 100644
--- a/chrome/browser/importer/nss_decryptor_null.h
+++ b/chrome/browser/importer/nss_decryptor_null.h
@@ -14,9 +14,11 @@
class FilePath;
-namespace webkit_glue {
+namespace webkit {
+namespace forms {
struct PasswordForm;
}
+}
// A NULL wrapper for Firefox NSS decrypt component, for use in builds where
// we do not have the NSS library.
@@ -26,9 +28,9 @@ class NSSDecryptor {
bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; }
string16 Decrypt(const std::string& crypt) const { return string16(); }
void ParseSignons(const std::string& content,
- std::vector<webkit_glue::PasswordForm>* forms) {}
+ std::vector<webkit::forms::PasswordForm>* forms) {}
bool ReadAndParseSignons(const FilePath& sqlite_file,
- std::vector<webkit_glue::PasswordForm>* forms) {
+ std::vector<webkit::forms::PasswordForm>* forms) {
return false;
}
« no previous file with comments | « chrome/browser/importer/nss_decryptor_mac.h ('k') | chrome/browser/importer/nss_decryptor_system_nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698