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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 // Shows the Content Settings page for a given content type. | 567 // Shows the Content Settings page for a given content type. |
568 void ShowContentSettingsPage(ContentSettingsType content_type); | 568 void ShowContentSettingsPage(ContentSettingsType content_type); |
569 void OpenClearBrowsingDataDialog(); | 569 void OpenClearBrowsingDataDialog(); |
570 void OpenOptionsDialog(); | 570 void OpenOptionsDialog(); |
571 void OpenPasswordManager(); | 571 void OpenPasswordManager(); |
572 void OpenSyncMyBookmarksDialog(); | 572 void OpenSyncMyBookmarksDialog(); |
573 void OpenImportSettingsDialog(); | 573 void OpenImportSettingsDialog(); |
574 void OpenInstantConfirmDialog(); | 574 void OpenInstantConfirmDialog(); |
575 void OpenAboutChromeDialog(); | 575 void OpenAboutChromeDialog(); |
576 void OpenUpdateChromeDialog(); | 576 void OpenUpdateChromeDialog(); |
577 void OpenHelpTab(); | 577 void ShowHelpTab(); |
578 // Used by the "Get themes" link in the options dialog. | 578 // Used by the "Get themes" link in the options dialog. |
579 void OpenThemeGalleryTabAndActivate(); | 579 void OpenThemeGalleryTabAndActivate(); |
580 void OpenAutofillHelpTabAndActivate(); | 580 void OpenAutofillHelpTabAndActivate(); |
581 void OpenPrivacyDashboardTabAndActivate(); | 581 void OpenPrivacyDashboardTabAndActivate(); |
582 void OpenSearchEngineOptionsDialog(); | 582 void OpenSearchEngineOptionsDialog(); |
583 #if defined(OS_CHROMEOS) | 583 #if defined(OS_CHROMEOS) |
584 void OpenFileManager(); | 584 void OpenFileManager(); |
585 void OpenSystemOptionsDialog(); | 585 void OpenSystemOptionsDialog(); |
586 void OpenInternetOptionsDialog(); | 586 void OpenInternetOptionsDialog(); |
587 void OpenLanguageOptionsDialog(); | 587 void OpenLanguageOptionsDialog(); |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1239 // Helper which implements the TabRestoreServiceDelegate interface. | 1239 // Helper which implements the TabRestoreServiceDelegate interface. |
1240 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_; | 1240 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_; |
1241 | 1241 |
1242 scoped_ptr<InstantController> instant_; | 1242 scoped_ptr<InstantController> instant_; |
1243 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1243 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
1244 | 1244 |
1245 DISALLOW_COPY_AND_ASSIGN(Browser); | 1245 DISALLOW_COPY_AND_ASSIGN(Browser); |
1246 }; | 1246 }; |
1247 | 1247 |
1248 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1248 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |