| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |