| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 void OpenKeywordEditor(); | 515 void OpenKeywordEditor(); |
| 516 void OpenPasswordManager(); | 516 void OpenPasswordManager(); |
| 517 void OpenSyncMyBookmarksDialog(); | 517 void OpenSyncMyBookmarksDialog(); |
| 518 void OpenImportSettingsDialog(); | 518 void OpenImportSettingsDialog(); |
| 519 void OpenAboutChromeDialog(); | 519 void OpenAboutChromeDialog(); |
| 520 void OpenUpdateChromeDialog(); | 520 void OpenUpdateChromeDialog(); |
| 521 void OpenHelpTab(); | 521 void OpenHelpTab(); |
| 522 // Used by the "Get themes" link in the options dialog. | 522 // Used by the "Get themes" link in the options dialog. |
| 523 void OpenThemeGalleryTabAndActivate(); | 523 void OpenThemeGalleryTabAndActivate(); |
| 524 void OpenAutoFillHelpTabAndActivate(); | 524 void OpenAutoFillHelpTabAndActivate(); |
| 525 void OpenPrivacyDashboardTabAndActivate(); |
| 525 #if defined(OS_CHROMEOS) | 526 #if defined(OS_CHROMEOS) |
| 526 void OpenSystemOptionsDialog(); | 527 void OpenSystemOptionsDialog(); |
| 527 void OpenInternetOptionsDialog(); | 528 void OpenInternetOptionsDialog(); |
| 528 #endif | 529 #endif |
| 529 | 530 |
| 530 virtual void UpdateDownloadShelfVisibility(bool visible); | 531 virtual void UpdateDownloadShelfVisibility(bool visible); |
| 531 | 532 |
| 532 ///////////////////////////////////////////////////////////////////////////// | 533 ///////////////////////////////////////////////////////////////////////////// |
| 533 | 534 |
| 534 // Sets the value of homepage related prefs to new values. Since we do not | 535 // Sets the value of homepage related prefs to new values. Since we do not |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 mutable BooleanPrefMember use_vertical_tabs_; | 1045 mutable BooleanPrefMember use_vertical_tabs_; |
| 1045 | 1046 |
| 1046 // The profile's tab restore service. The service is owned by the profile, | 1047 // The profile's tab restore service. The service is owned by the profile, |
| 1047 // and we install ourselves as an observer. | 1048 // and we install ourselves as an observer. |
| 1048 TabRestoreService* tab_restore_service_; | 1049 TabRestoreService* tab_restore_service_; |
| 1049 | 1050 |
| 1050 DISALLOW_COPY_AND_ASSIGN(Browser); | 1051 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1051 }; | 1052 }; |
| 1052 | 1053 |
| 1053 #endif // CHROME_BROWSER_BROWSER_H_ | 1054 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |