Index: chrome/browser/profile.cc |
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc |
index ed9ca5b37ced5cf94ab59e4e658364791d4d23b1..cc9d42e139a05a953a2675087ec9a225b0a1b84a 100644 |
--- a/chrome/browser/profile.cc |
+++ b/chrome/browser/profile.cc |
@@ -90,8 +90,10 @@ URLRequestContext* Profile::GetDefaultRequestContext() { |
} |
#if defined(OS_LINUX) |
-#include "chrome/browser/password_manager/password_store_gnome.h" |
-#include "chrome/browser/password_manager/password_store_kwallet.h" |
+// Temporarily disabled while we figure some stuff out. |
+// http://code.google.com/p/chromium/issues/detail?id=12351 |
+// #include "chrome/browser/password_manager/password_store_gnome.h" |
+// #include "chrome/browser/password_manager/password_store_kwallet.h" |
#elif defined(OS_WIN) |
#include "chrome/browser/password_manager/password_store_win.h" |
#endif |
@@ -818,11 +820,14 @@ void ProfileImpl::CreatePasswordStore() { |
created_password_store_ = true; |
scoped_refptr<PasswordStore> ps; |
#if defined(OS_LINUX) |
- if (getenv("KDE_FULL_SESSION")) { |
- ps = new PasswordStoreKWallet(); |
- } else { |
- ps = new PasswordStoreGnome(); |
- } |
+// Temporarily disabled while we figure some stuff out. |
+// http://code.google.com/p/chromium/issues/detail?id=12351 |
+// if (getenv("KDE_FULL_SESSION")) { |
+// ps = new PasswordStoreKWallet(); |
+// } else { |
+// ps = new PasswordStoreGnome(); |
+// } |
+ NOTIMPLEMENTED(); |
#elif defined(OS_WIN) |
ps = new PasswordStoreWin(GetWebDataService(Profile::IMPLICIT_ACCESS)); |
#else |