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

Unified Diff: chrome/browser/password_manager/test_password_store_service.h

Issue 1165913002: [Cleanup] Used scoped pointers in KeyedServiceFactory's SetTestingFactory functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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/test_password_store_service.h
diff --git a/chrome/browser/password_manager/test_password_store_service.h b/chrome/browser/password_manager/test_password_store_service.h
index 9e28cc7b4d34f507ff0790967fe9c03af238c09b..3660f2505ee47d962af71f4544ae018c83389b77 100644
--- a/chrome/browser/password_manager/test_password_store_service.h
+++ b/chrome/browser/password_manager/test_password_store_service.h
@@ -5,6 +5,7 @@
#ifndef CHROME_BROWSER_PASSWORD_MANAGER_TEST_PASSWORD_STORE_SERVICE_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_TEST_PASSWORD_STORE_SERVICE_H_
+#include "base/memory/scoped_ptr.h"
#include "chrome/browser/password_manager/password_store_factory.h"
namespace content {
@@ -17,7 +18,7 @@ class PasswordStore;
class TestPasswordStoreService : public PasswordStoreService {
public:
- static KeyedService* Build(content::BrowserContext* profile);
+ static scoped_ptr<KeyedService> Build(content::BrowserContext* profile);
private:
explicit TestPasswordStoreService(

Powered by Google App Engine
This is Rietveld 408576698