• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "chrome/browser/ui/fullscreen/fullscreen_within_tab_helper.h"
6 
7 DEFINE_WEB_CONTENTS_USER_DATA_KEY(FullscreenWithinTabHelper);
8 
FullscreenWithinTabHelper(content::WebContents * ignored)9 FullscreenWithinTabHelper::FullscreenWithinTabHelper(
10     content::WebContents* ignored)
11     : is_fullscreen_for_captured_tab_(false) {}
12 
~FullscreenWithinTabHelper()13 FullscreenWithinTabHelper::~FullscreenWithinTabHelper() {}
14 
15 // static
RemoveForWebContents(content::WebContents * web_contents)16 void FullscreenWithinTabHelper::RemoveForWebContents(
17     content::WebContents* web_contents) {
18   DCHECK(web_contents);
19   web_contents->RemoveUserData(UserDataKey());
20 }
21