| 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 void ShowHistoryTab(); | 512 void ShowHistoryTab(); |
| 513 void ShowDownloadsTab(); | 513 void ShowDownloadsTab(); |
| 514 void ShowExtensionsTab(); | 514 void ShowExtensionsTab(); |
| 515 void ShowBrokenPageTab(TabContents* contents); | 515 void ShowBrokenPageTab(TabContents* contents); |
| 516 void ShowOptionsTab(); | 516 void ShowOptionsTab(); |
| 517 void OpenClearBrowsingDataDialog(); | 517 void OpenClearBrowsingDataDialog(); |
| 518 void OpenOptionsDialog(); | 518 void OpenOptionsDialog(); |
| 519 void OpenKeywordEditor(); | 519 void OpenKeywordEditor(); |
| 520 void OpenPasswordManager(); | 520 void OpenPasswordManager(); |
| 521 void OpenSyncMyBookmarksDialog(); | 521 void OpenSyncMyBookmarksDialog(); |
| 522 #if defined(ENABLE_REMOTING) |
| 523 void OpenRemotingSetupDialog(); |
| 524 #endif |
| 522 void OpenImportSettingsDialog(); | 525 void OpenImportSettingsDialog(); |
| 523 void OpenAboutChromeDialog(); | 526 void OpenAboutChromeDialog(); |
| 524 void OpenUpdateChromeDialog(); | 527 void OpenUpdateChromeDialog(); |
| 525 void OpenHelpTab(); | 528 void OpenHelpTab(); |
| 526 // Used by the "Get themes" link in the options dialog. | 529 // Used by the "Get themes" link in the options dialog. |
| 527 void OpenThemeGalleryTabAndActivate(); | 530 void OpenThemeGalleryTabAndActivate(); |
| 528 void OpenAutoFillHelpTabAndActivate(); | 531 void OpenAutoFillHelpTabAndActivate(); |
| 529 void OpenPrivacyDashboardTabAndActivate(); | 532 void OpenPrivacyDashboardTabAndActivate(); |
| 530 #if defined(OS_CHROMEOS) | 533 #if defined(OS_CHROMEOS) |
| 531 void OpenSystemOptionsDialog(); | 534 void OpenSystemOptionsDialog(); |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 mutable BooleanPrefMember use_vertical_tabs_; | 1072 mutable BooleanPrefMember use_vertical_tabs_; |
| 1070 | 1073 |
| 1071 // The profile's tab restore service. The service is owned by the profile, | 1074 // The profile's tab restore service. The service is owned by the profile, |
| 1072 // and we install ourselves as an observer. | 1075 // and we install ourselves as an observer. |
| 1073 TabRestoreService* tab_restore_service_; | 1076 TabRestoreService* tab_restore_service_; |
| 1074 | 1077 |
| 1075 DISALLOW_COPY_AND_ASSIGN(Browser); | 1078 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1076 }; | 1079 }; |
| 1077 | 1080 |
| 1078 #endif // CHROME_BROWSER_BROWSER_H_ | 1081 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |