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

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

Issue 9353010: Add FullscreenController::ToggleFullscreenModeWithExtension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Show "An extension triggered full screen." when the extension's name is not available. Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chromeos/media/media_player.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 void SelectPreviousTab(); 541 void SelectPreviousTab();
542 void OpenTabpose(); 542 void OpenTabpose();
543 void MoveTabNext(); 543 void MoveTabNext();
544 void MoveTabPrevious(); 544 void MoveTabPrevious();
545 void SelectNumberedTab(int index); 545 void SelectNumberedTab(int index);
546 void SelectLastTab(); 546 void SelectLastTab();
547 void DuplicateTab(); 547 void DuplicateTab();
548 void WriteCurrentURLToClipboard(); 548 void WriteCurrentURLToClipboard();
549 void ConvertPopupToTabbedBrowser(); 549 void ConvertPopupToTabbedBrowser();
550 // In kiosk mode, the first toggle is valid, the rest is discarded. 550 // In kiosk mode, the first toggle is valid, the rest is discarded.
551 void ToggleFullscreenMode(bool from_tab); 551 void ToggleFullscreenMode();
552 // See the description of
553 // FullscreenController::ToggleFullscreenModeWithExtension.
554 void ToggleFullscreenModeWithExtension(const Extension& extension);
552 #if defined(OS_MACOSX) 555 #if defined(OS_MACOSX)
553 void TogglePresentationMode(bool from_tab); 556 void TogglePresentationMode();
554 #endif 557 #endif
555 void Exit(); 558 void Exit();
556 #if defined(OS_CHROMEOS) 559 #if defined(OS_CHROMEOS)
557 void Search(); 560 void Search();
558 void ShowKeyboardOverlay(); 561 void ShowKeyboardOverlay();
559 #endif 562 #endif
560 563
561 // Page-related commands 564 // Page-related commands
562 void BookmarkCurrentPage(); 565 void BookmarkCurrentPage();
563 void SavePage(); 566 void SavePage();
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 1455
1453 scoped_refptr<FullscreenController> fullscreen_controller_; 1456 scoped_refptr<FullscreenController> fullscreen_controller_;
1454 1457
1455 // True if the browser window has been shown at least once. 1458 // True if the browser window has been shown at least once.
1456 bool window_has_shown_; 1459 bool window_has_shown_;
1457 1460
1458 DISALLOW_COPY_AND_ASSIGN(Browser); 1461 DISALLOW_COPY_AND_ASSIGN(Browser);
1459 }; 1462 };
1460 1463
1461 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1464 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/media/media_player.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698