| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_H_ |
| 6 #define CHROME_BROWSER_BROWSER_H_ | 6 #define CHROME_BROWSER_BROWSER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 void SelectNextTab(); | 340 void SelectNextTab(); |
| 341 void SelectPreviousTab(); | 341 void SelectPreviousTab(); |
| 342 void MoveTabNext(); | 342 void MoveTabNext(); |
| 343 void MoveTabPrevious(); | 343 void MoveTabPrevious(); |
| 344 void SelectNumberedTab(int index); | 344 void SelectNumberedTab(int index); |
| 345 void SelectLastTab(); | 345 void SelectLastTab(); |
| 346 void DuplicateTab(); | 346 void DuplicateTab(); |
| 347 void RestoreTab(); | 347 void RestoreTab(); |
| 348 void WriteCurrentURLToClipboard(); | 348 void WriteCurrentURLToClipboard(); |
| 349 void ConvertPopupToTabbedBrowser(); | 349 void ConvertPopupToTabbedBrowser(); |
| 350 // In kiosk mode, the first toggle is valid, the rest is discarded. |
| 350 void ToggleFullscreenMode(); | 351 void ToggleFullscreenMode(); |
| 351 void Exit(); | 352 void Exit(); |
| 352 #if defined(TOOLKIT_VIEWS) | 353 #if defined(TOOLKIT_VIEWS) |
| 353 void ToggleCompactNavigationBar(); | 354 void ToggleCompactNavigationBar(); |
| 354 #endif | 355 #endif |
| 355 | 356 |
| 356 // Page-related commands | 357 // Page-related commands |
| 357 void BookmarkCurrentPage(); | 358 void BookmarkCurrentPage(); |
| 358 void SavePage(); | 359 void SavePage(); |
| 359 void ViewSource(); | 360 void ViewSource(); |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 // Dialog box used for opening and saving files. | 817 // Dialog box used for opening and saving files. |
| 817 scoped_refptr<SelectFileDialog> select_file_dialog_; | 818 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 818 | 819 |
| 819 // Keep track of the encoding auto detect pref. | 820 // Keep track of the encoding auto detect pref. |
| 820 BooleanPrefMember encoding_auto_detect_; | 821 BooleanPrefMember encoding_auto_detect_; |
| 821 | 822 |
| 822 DISALLOW_COPY_AND_ASSIGN(Browser); | 823 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 823 }; | 824 }; |
| 824 | 825 |
| 825 #endif // CHROME_BROWSER_BROWSER_H_ | 826 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |