Chromium Code Reviews| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 529 void SelectPreviousTab(); | 529 void SelectPreviousTab(); |
| 530 void OpenTabpose(); | 530 void OpenTabpose(); |
| 531 void MoveTabNext(); | 531 void MoveTabNext(); |
| 532 void MoveTabPrevious(); | 532 void MoveTabPrevious(); |
| 533 void SelectNumberedTab(int index); | 533 void SelectNumberedTab(int index); |
| 534 void SelectLastTab(); | 534 void SelectLastTab(); |
| 535 void DuplicateTab(); | 535 void DuplicateTab(); |
| 536 void WriteCurrentURLToClipboard(); | 536 void WriteCurrentURLToClipboard(); |
| 537 void ConvertPopupToTabbedBrowser(); | 537 void ConvertPopupToTabbedBrowser(); |
| 538 // In kiosk mode, the first toggle is valid, the rest is discarded. | 538 // In kiosk mode, the first toggle is valid, the rest is discarded. |
| 539 void ToggleFullscreenMode(bool from_tab); | 539 void ToggleFullscreenMode(); |
| 540 void ToggleFullscreenModeWithExtension(const Extension& extension); | |
|
Ben Goodger (Google)
2012/02/09 19:32:49
Add a comment here that refers to the comment in f
hashimoto
2012/02/10 05:09:32
Done.
| |
| 540 #if defined(OS_MACOSX) | 541 #if defined(OS_MACOSX) |
| 541 void TogglePresentationMode(bool from_tab); | 542 void TogglePresentationMode(); |
| 542 #endif | 543 #endif |
| 543 void Exit(); | 544 void Exit(); |
| 544 #if defined(OS_CHROMEOS) | 545 #if defined(OS_CHROMEOS) |
| 545 void Search(); | 546 void Search(); |
| 546 void ShowKeyboardOverlay(); | 547 void ShowKeyboardOverlay(); |
| 547 #endif | 548 #endif |
| 548 | 549 |
| 549 // Page-related commands | 550 // Page-related commands |
| 550 void BookmarkCurrentPage(); | 551 void BookmarkCurrentPage(); |
| 551 void SavePage(); | 552 void SavePage(); |
| (...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1445 | 1446 |
| 1446 scoped_refptr<FullscreenController> fullscreen_controller_; | 1447 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1447 | 1448 |
| 1448 // True if the browser window has been shown at least once. | 1449 // True if the browser window has been shown at least once. |
| 1449 bool window_has_shown_; | 1450 bool window_has_shown_; |
| 1450 | 1451 |
| 1451 DISALLOW_COPY_AND_ASSIGN(Browser); | 1452 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1452 }; | 1453 }; |
| 1453 | 1454 |
| 1454 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1455 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |