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

Unified Diff: extensions/common/event_filtering_info.h

Issue 1908953003: Convert //extensions/{common,shell} from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 4 years, 8 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/common/event_filter_unittest.cc ('k') | extensions/common/event_filtering_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/event_filtering_info.h
diff --git a/extensions/common/event_filtering_info.h b/extensions/common/event_filtering_info.h
index aaa03a4200c044bfda002bd0871768676c588edb..5578a95c7bcbde4686f1a90009cc7b5cca984014 100644
--- a/extensions/common/event_filtering_info.h
+++ b/extensions/common/event_filtering_info.h
@@ -5,7 +5,8 @@
#ifndef EXTENSIONS_COMMON_EVENT_FILTERING_INFO_H_
#define EXTENSIONS_COMMON_EVENT_FILTERING_INFO_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "url/gurl.h"
namespace base {
@@ -59,7 +60,7 @@ class EventFilteringInfo {
bool has_service_type() const { return !service_type_.empty(); }
const std::string& service_type() const { return service_type_; }
- scoped_ptr<base::Value> AsValue() const;
+ std::unique_ptr<base::Value> AsValue() const;
bool IsEmpty() const;
private:
« no previous file with comments | « extensions/common/event_filter_unittest.cc ('k') | extensions/common/event_filtering_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698