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

Unified Diff: chrome/browser/task_manager/providers/web_contents/guest_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/guest_tag.h
diff --git a/chrome/browser/task_manager/providers/web_contents/guest_tag.h b/chrome/browser/task_manager/providers/web_contents/guest_tag.h
index 725a32716337904bee15b8ae625286a674c85aed..14048dee40924e107bc464ed8824f2e9da18c9ea 100644
--- a/chrome/browser/task_manager/providers/web_contents/guest_tag.h
+++ b/chrome/browser/task_manager/providers/web_contents/guest_tag.h
@@ -15,6 +15,8 @@ namespace task_manager {
// which represents browser <*view> tag plugin guests.
class GuestTag : public WebContentsTag {
public:
+ ~GuestTag() override;
+
// task_manager::WebContentsTag:
GuestTask* CreateTask() const override;
@@ -22,7 +24,6 @@ class GuestTag : public WebContentsTag {
friend class WebContentsTags;
explicit GuestTag(content::WebContents* web_contents);
- ~GuestTag() override;
DISALLOW_COPY_AND_ASSIGN(GuestTag);
};

Powered by Google App Engine
This is Rietveld 408576698