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

Unified Diff: chrome/browser/password_manager/mock_password_store.cc

Issue 9665007: Profile refactoring: Remove all PasswordStore code from the Profile interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win and Mac Created 8 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/mock_password_store.cc
diff --git a/chrome/browser/password_manager/mock_password_store.cc b/chrome/browser/password_manager/mock_password_store.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7f9d57ebac865184c2532166cbdb255e318ab3af
--- /dev/null
+++ b/chrome/browser/password_manager/mock_password_store.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2012 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.
+
+#include "chrome/browser/password_manager/mock_password_store.h"
+
+MockPasswordStore::MockPasswordStore() {}
+
+MockPasswordStore::~MockPasswordStore() {}
+
+// static
+ProfileKeyedBase* MockPasswordStore::Build(Profile* profile) {
+ return new MockPasswordStore;
+}
+
+void MockPasswordStore::ShutdownOnUIThread() {}

Powered by Google App Engine
This is Rietveld 408576698