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

Unified Diff: chrome/browser/task_manager/providers/web_contents/extension_tag.h

Issue 2845263002: Switch SupportsUserData uses to use unique_ptr. (Closed)
Patch Set: Created 3 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
Index: chrome/browser/task_manager/providers/web_contents/extension_tag.h
diff --git a/chrome/browser/task_manager/providers/web_contents/extension_tag.h b/chrome/browser/task_manager/providers/web_contents/extension_tag.h
index 9368f99cbd3a03cd02e009df9891447d6910ff6e..386a9ee66286f57d88c2e9faf98698cf054812e8 100644
--- a/chrome/browser/task_manager/providers/web_contents/extension_tag.h
+++ b/chrome/browser/task_manager/providers/web_contents/extension_tag.h
@@ -14,6 +14,8 @@ namespace task_manager {
// Defines a concrete UserData type for WebContents owned by extensions.
class ExtensionTag : public WebContentsTag {
public:
+ ~ExtensionTag() override;
+
// task_manager::WebContentsTag:
ExtensionTask* CreateTask() const override;
@@ -22,7 +24,6 @@ class ExtensionTag : public WebContentsTag {
ExtensionTag(content::WebContents* web_contents,
const extensions::ViewType view_type);
- ~ExtensionTag() override;
// The ViewType of the extension WebContents this tag is attached to.
const extensions::ViewType view_type_;

Powered by Google App Engine
This is Rietveld 408576698