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

Unified Diff: extensions/browser/content_verifier_io_data.h

Issue 2294653002: Some linked_ptr -> unique_ptr conversion in extensions/browser. (Closed)
Patch Set: address comments Created 4 years, 4 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 | « extensions/browser/blob_holder.cc ('k') | extensions/browser/content_verifier_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/content_verifier_io_data.h
diff --git a/extensions/browser/content_verifier_io_data.h b/extensions/browser/content_verifier_io_data.h
index 65f38efa44c7ddaa8b4df87b1e093b24e2cf6f8c..0f0326264736a0014ab3ff723f12dfd3a67824a8 100644
--- a/extensions/browser/content_verifier_io_data.h
+++ b/extensions/browser/content_verifier_io_data.h
@@ -11,7 +11,6 @@
#include <string>
#include "base/files/file_path.h"
-#include "base/memory/linked_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/version.h"
@@ -46,7 +45,7 @@ class ContentVerifierIOData
friend class base::RefCountedThreadSafe<ContentVerifierIOData>;
virtual ~ContentVerifierIOData();
- std::map<std::string, linked_ptr<ExtensionData> > data_map_;
+ std::map<std::string, std::unique_ptr<ExtensionData>> data_map_;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/blob_holder.cc ('k') | extensions/browser/content_verifier_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698