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

Unified Diff: components/password_manager/core/browser/affiliation_fetcher_delegate.h

Issue 1852093002: components/password_manager: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and revert an accidental .proto change Created 4 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: components/password_manager/core/browser/affiliation_fetcher_delegate.h
diff --git a/components/password_manager/core/browser/affiliation_fetcher_delegate.h b/components/password_manager/core/browser/affiliation_fetcher_delegate.h
index fdea5b82d5d99396277a9ea680dcd2d853daf558..b67e63656e38b87799db87c97fa40e82824cb03e 100644
--- a/components/password_manager/core/browser/affiliation_fetcher_delegate.h
+++ b/components/password_manager/core/browser/affiliation_fetcher_delegate.h
@@ -5,9 +5,9 @@
#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_FETCHER_DELEGATE_H_
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_FETCHER_DELEGATE_H_
+#include <memory>
#include <vector>
-#include "base/memory/scoped_ptr.h"
#include "components/password_manager/core/browser/affiliation_utils.h"
namespace password_manager {
@@ -23,7 +23,7 @@ class AffiliationFetcherDelegate {
// |result| will contain at most as many equivalence class as facet URIs in
// the request, and each requested facet URI will appear in exactly one
// equivalence class.
- virtual void OnFetchSucceeded(scoped_ptr<Result> result) = 0;
+ virtual void OnFetchSucceeded(std::unique_ptr<Result> result) = 0;
// Called when affiliation information could not be fetched due to a network
// error or a presumably transient server error. The implementor may and will

Powered by Google App Engine
This is Rietveld 408576698