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

Side by Side Diff: chrome/browser/ui/browser.h

Issue 789533002: Fullscreen: make fullscreen requests come from RenderFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make try happy Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_
6 #define CHROME_BROWSER_UI_BROWSER_H_ 6 #define CHROME_BROWSER_UI_BROWSER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 content::ColorChooser* OpenColorChooser( 604 content::ColorChooser* OpenColorChooser(
605 content::WebContents* web_contents, 605 content::WebContents* web_contents,
606 SkColor color, 606 SkColor color,
607 const std::vector<content::ColorSuggestion>& suggestions) override; 607 const std::vector<content::ColorSuggestion>& suggestions) override;
608 void RunFileChooser(content::WebContents* web_contents, 608 void RunFileChooser(content::WebContents* web_contents,
609 const content::FileChooserParams& params) override; 609 const content::FileChooserParams& params) override;
610 void EnumerateDirectory(content::WebContents* web_contents, 610 void EnumerateDirectory(content::WebContents* web_contents,
611 int request_id, 611 int request_id,
612 const base::FilePath& path) override; 612 const base::FilePath& path) override;
613 bool EmbedsFullscreenWidget() const override; 613 bool EmbedsFullscreenWidget() const override;
614 void ToggleFullscreenModeForTab(content::WebContents* web_contents, 614 void EnterFullscreenModeForTab(content::WebContents* web_contents,
615 bool enter_fullscreen) override; 615 const GURL& origin) override;
616 void ExitFullscreenModeForTab(content::WebContents* web_contents) override;
616 bool IsFullscreenForTabOrPending( 617 bool IsFullscreenForTabOrPending(
617 const content::WebContents* web_contents) const override; 618 const content::WebContents* web_contents) const override;
618 void RegisterProtocolHandler(content::WebContents* web_contents, 619 void RegisterProtocolHandler(content::WebContents* web_contents,
619 const std::string& protocol, 620 const std::string& protocol,
620 const GURL& url, 621 const GURL& url,
621 bool user_gesture) override; 622 bool user_gesture) override;
622 void UnregisterProtocolHandler(content::WebContents* web_contents, 623 void UnregisterProtocolHandler(content::WebContents* web_contents,
623 const std::string& protocol, 624 const std::string& protocol,
624 const GURL& url, 625 const GURL& url,
625 bool user_gesture) override; 626 bool user_gesture) override;
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 // The following factory is used for chrome update coalescing. 970 // The following factory is used for chrome update coalescing.
970 base::WeakPtrFactory<Browser> chrome_updater_factory_; 971 base::WeakPtrFactory<Browser> chrome_updater_factory_;
971 972
972 // The following factory is used to close the frame at a later time. 973 // The following factory is used to close the frame at a later time.
973 base::WeakPtrFactory<Browser> weak_factory_; 974 base::WeakPtrFactory<Browser> weak_factory_;
974 975
975 DISALLOW_COPY_AND_ASSIGN(Browser); 976 DISALLOW_COPY_AND_ASSIGN(Browser);
976 }; 977 };
977 978
978 #endif // CHROME_BROWSER_UI_BROWSER_H_ 979 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/lock/screen_locker_browsertest.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698