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

Unified Diff: chrome/browser/profile.cc

Issue 113710: Patch to make password patch build. (Closed)
Patch Set: Created 11 years, 7 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/browser.vcproj ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/browser/browser.vcproj ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698