OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 void OpenTabpose(); | 501 void OpenTabpose(); |
502 void MoveTabNext(); | 502 void MoveTabNext(); |
503 void MoveTabPrevious(); | 503 void MoveTabPrevious(); |
504 void SelectNumberedTab(int index); | 504 void SelectNumberedTab(int index); |
505 void SelectLastTab(); | 505 void SelectLastTab(); |
506 void DuplicateTab(); | 506 void DuplicateTab(); |
507 void WriteCurrentURLToClipboard(); | 507 void WriteCurrentURLToClipboard(); |
508 void ConvertPopupToTabbedBrowser(); | 508 void ConvertPopupToTabbedBrowser(); |
509 // In kiosk mode, the first toggle is valid, the rest is discarded. | 509 // In kiosk mode, the first toggle is valid, the rest is discarded. |
510 void ToggleFullscreenMode(); | 510 void ToggleFullscreenMode(); |
| 511 #if defined(OS_MACOSX) |
| 512 void TogglePresentationMode(); |
| 513 #endif |
511 void Exit(); | 514 void Exit(); |
512 #if defined(OS_CHROMEOS) | 515 #if defined(OS_CHROMEOS) |
513 void Search(); | 516 void Search(); |
514 void ShowKeyboardOverlay(); | 517 void ShowKeyboardOverlay(); |
515 #endif | 518 #endif |
516 | 519 |
517 // Page-related commands | 520 // Page-related commands |
518 void BookmarkCurrentPage(); | 521 void BookmarkCurrentPage(); |
519 void SavePage(); | 522 void SavePage(); |
520 void ViewSelectedSource(); | 523 void ViewSelectedSource(); |
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1280 | 1283 |
1281 scoped_ptr<InstantController> instant_; | 1284 scoped_ptr<InstantController> instant_; |
1282 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1285 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
1283 | 1286 |
1284 BookmarkBar::State bookmark_bar_state_; | 1287 BookmarkBar::State bookmark_bar_state_; |
1285 | 1288 |
1286 DISALLOW_COPY_AND_ASSIGN(Browser); | 1289 DISALLOW_COPY_AND_ASSIGN(Browser); |
1287 }; | 1290 }; |
1288 | 1291 |
1289 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1292 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |