| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 void OpenCurrentURL(); | 426 void OpenCurrentURL(); |
| 427 void Stop(); | 427 void Stop(); |
| 428 // Window management commands | 428 // Window management commands |
| 429 void NewWindow(); | 429 void NewWindow(); |
| 430 void NewIncognitoWindow(); | 430 void NewIncognitoWindow(); |
| 431 void CloseWindow(); | 431 void CloseWindow(); |
| 432 void NewTab(); | 432 void NewTab(); |
| 433 void CloseTab(); | 433 void CloseTab(); |
| 434 void SelectNextTab(); | 434 void SelectNextTab(); |
| 435 void SelectPreviousTab(); | 435 void SelectPreviousTab(); |
| 436 void OpenTabpose(); |
| 436 void MoveTabNext(); | 437 void MoveTabNext(); |
| 437 void MoveTabPrevious(); | 438 void MoveTabPrevious(); |
| 438 void SelectNumberedTab(int index); | 439 void SelectNumberedTab(int index); |
| 439 void SelectLastTab(); | 440 void SelectLastTab(); |
| 440 void DuplicateTab(); | 441 void DuplicateTab(); |
| 441 void WriteCurrentURLToClipboard(); | 442 void WriteCurrentURLToClipboard(); |
| 442 void ConvertPopupToTabbedBrowser(); | 443 void ConvertPopupToTabbedBrowser(); |
| 443 // In kiosk mode, the first toggle is valid, the rest is discarded. | 444 // In kiosk mode, the first toggle is valid, the rest is discarded. |
| 444 void ToggleFullscreenMode(); | 445 void ToggleFullscreenMode(); |
| 445 void Exit(); | 446 void Exit(); |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 mutable BooleanPrefMember use_vertical_tabs_; | 1068 mutable BooleanPrefMember use_vertical_tabs_; |
| 1068 | 1069 |
| 1069 // The profile's tab restore service. The service is owned by the profile, | 1070 // The profile's tab restore service. The service is owned by the profile, |
| 1070 // and we install ourselves as an observer. | 1071 // and we install ourselves as an observer. |
| 1071 TabRestoreService* tab_restore_service_; | 1072 TabRestoreService* tab_restore_service_; |
| 1072 | 1073 |
| 1073 DISALLOW_COPY_AND_ASSIGN(Browser); | 1074 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1074 }; | 1075 }; |
| 1075 | 1076 |
| 1076 #endif // CHROME_BROWSER_BROWSER_H_ | 1077 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |