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

Unified Diff: chrome/browser/extensions/api/tab_capture/offscreen_tab.h

Issue 2846413002: 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/extensions/api/tab_capture/offscreen_tab.h
diff --git a/chrome/browser/extensions/api/tab_capture/offscreen_tab.h b/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
index 1df9a3467cfda708b77c4c32426f5354e2f3c1b2..7d42cd42be9c7befb9ac80b91709127bc1756096 100644
--- a/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
+++ b/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
@@ -36,7 +36,7 @@ class OffscreenTab; // Forward declaration. See below.
//
// This class operates exclusively on the UI thread and so is not thread-safe.
class OffscreenTabsOwner
- : protected content::WebContentsUserData<OffscreenTabsOwner> {
+ : public content::WebContentsUserData<OffscreenTabsOwner> {
public:
~OffscreenTabsOwner() final;

Powered by Google App Engine
This is Rietveld 408576698