OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 void ShowContentSettingsPage(ContentSettingsType content_type); | 651 void ShowContentSettingsPage(ContentSettingsType content_type); |
652 void OpenClearBrowsingDataDialog(); | 652 void OpenClearBrowsingDataDialog(); |
653 void OpenOptionsDialog(); | 653 void OpenOptionsDialog(); |
654 void OpenPasswordManager(); | 654 void OpenPasswordManager(); |
655 void OpenSyncMyBookmarksDialog(); | 655 void OpenSyncMyBookmarksDialog(); |
656 void OpenImportSettingsDialog(); | 656 void OpenImportSettingsDialog(); |
657 void OpenInstantConfirmDialog(); | 657 void OpenInstantConfirmDialog(); |
658 void OpenAboutChromeDialog(); | 658 void OpenAboutChromeDialog(); |
659 void OpenUpdateChromeDialog(); | 659 void OpenUpdateChromeDialog(); |
660 void ShowHelpTab(); | 660 void ShowHelpTab(); |
661 void OpenAutofillHelpTabAndActivate(); | |
662 void OpenPrivacyDashboardTabAndActivate(); | 661 void OpenPrivacyDashboardTabAndActivate(); |
663 void OpenSearchEngineOptionsDialog(); | 662 void OpenSearchEngineOptionsDialog(); |
664 void OpenPluginsTabAndActivate(); | 663 void OpenPluginsTabAndActivate(); |
665 void ShowSyncSetup(SyncPromoUI::Source source); | 664 void ShowSyncSetup(SyncPromoUI::Source source); |
666 void ToggleSpeechInput(); | 665 void ToggleSpeechInput(); |
667 | 666 |
668 virtual void UpdateDownloadShelfVisibility(bool visible); | 667 virtual void UpdateDownloadShelfVisibility(bool visible); |
669 | 668 |
670 ///////////////////////////////////////////////////////////////////////////// | 669 ///////////////////////////////////////////////////////////////////////////// |
671 | 670 |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1463 bool window_has_shown_; | 1462 bool window_has_shown_; |
1464 | 1463 |
1465 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 1464 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
1466 // before DidEndColorChooser is called. | 1465 // before DidEndColorChooser is called. |
1467 scoped_ptr<content::ColorChooser> color_chooser_; | 1466 scoped_ptr<content::ColorChooser> color_chooser_; |
1468 | 1467 |
1469 DISALLOW_COPY_AND_ASSIGN(Browser); | 1468 DISALLOW_COPY_AND_ASSIGN(Browser); |
1470 }; | 1469 }; |
1471 | 1470 |
1472 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1471 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |