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

Unified Diff: chrome/browser/ui/exclusive_access/fullscreen_within_tab_helper.h

Issue 2847173004: 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/ui/exclusive_access/fullscreen_within_tab_helper.h
diff --git a/chrome/browser/ui/exclusive_access/fullscreen_within_tab_helper.h b/chrome/browser/ui/exclusive_access/fullscreen_within_tab_helper.h
index d051bc674fe984c358e4f64e9688f78e3a787fd9..e201bb79c723ed8eb9ed1560a955a1cd33b8626a 100644
--- a/chrome/browser/ui/exclusive_access/fullscreen_within_tab_helper.h
+++ b/chrome/browser/ui/exclusive_access/fullscreen_within_tab_helper.h
@@ -22,6 +22,8 @@
class FullscreenWithinTabHelper
: public content::WebContentsUserData<FullscreenWithinTabHelper> {
public:
+ ~FullscreenWithinTabHelper() override;
+
bool is_fullscreen_for_captured_tab() const {
return is_fullscreen_for_captured_tab_;
}
@@ -37,7 +39,6 @@ class FullscreenWithinTabHelper
private:
friend class content::WebContentsUserData<FullscreenWithinTabHelper>;
explicit FullscreenWithinTabHelper(content::WebContents* ignored);
- ~FullscreenWithinTabHelper() override;
bool is_fullscreen_for_captured_tab_;

Powered by Google App Engine
This is Rietveld 408576698