| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 void ShowHistoryTab(); | 552 void ShowHistoryTab(); |
| 553 void ShowDownloadsTab(); | 553 void ShowDownloadsTab(); |
| 554 void ShowExtensionsTab(); | 554 void ShowExtensionsTab(); |
| 555 void ShowAboutConflictsTab(); | 555 void ShowAboutConflictsTab(); |
| 556 void ShowBrokenPageTab(TabContents* contents); | 556 void ShowBrokenPageTab(TabContents* contents); |
| 557 void ShowOptionsTab(const std::string& sub_page); | 557 void ShowOptionsTab(const std::string& sub_page); |
| 558 void OpenClearBrowsingDataDialog(); | 558 void OpenClearBrowsingDataDialog(); |
| 559 void OpenOptionsDialog(); | 559 void OpenOptionsDialog(); |
| 560 void OpenPasswordManager(); | 560 void OpenPasswordManager(); |
| 561 void OpenSyncMyBookmarksDialog(); | 561 void OpenSyncMyBookmarksDialog(); |
| 562 #if defined(ENABLE_REMOTING) | |
| 563 void OpenRemotingSetupDialog(); | |
| 564 #endif | |
| 565 void OpenImportSettingsDialog(); | 562 void OpenImportSettingsDialog(); |
| 566 void OpenInstantConfirmDialog(); | 563 void OpenInstantConfirmDialog(); |
| 567 void OpenAboutChromeDialog(); | 564 void OpenAboutChromeDialog(); |
| 568 void OpenUpdateChromeDialog(); | 565 void OpenUpdateChromeDialog(); |
| 569 void OpenHelpTab(); | 566 void OpenHelpTab(); |
| 570 // Used by the "Get themes" link in the options dialog. | 567 // Used by the "Get themes" link in the options dialog. |
| 571 void OpenThemeGalleryTabAndActivate(); | 568 void OpenThemeGalleryTabAndActivate(); |
| 572 void OpenAutofillHelpTabAndActivate(); | 569 void OpenAutofillHelpTabAndActivate(); |
| 573 void OpenPrivacyDashboardTabAndActivate(); | 570 void OpenPrivacyDashboardTabAndActivate(); |
| 574 void OpenSearchEngineOptionsDialog(); | 571 void OpenSearchEngineOptionsDialog(); |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 // Helper which implements the TabRestoreServiceDelegate interface. | 1201 // Helper which implements the TabRestoreServiceDelegate interface. |
| 1205 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_; | 1202 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_; |
| 1206 | 1203 |
| 1207 scoped_ptr<InstantController> instant_; | 1204 scoped_ptr<InstantController> instant_; |
| 1208 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1205 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1209 | 1206 |
| 1210 DISALLOW_COPY_AND_ASSIGN(Browser); | 1207 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1211 }; | 1208 }; |
| 1212 | 1209 |
| 1213 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1210 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |