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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 void OpenOptionsDialog(); | 531 void OpenOptionsDialog(); |
532 void OpenKeywordEditor(); | 532 void OpenKeywordEditor(); |
533 void OpenPasswordManager(); | 533 void OpenPasswordManager(); |
534 void OpenSyncMyBookmarksDialog(); | 534 void OpenSyncMyBookmarksDialog(); |
535 void OpenImportSettingsDialog(); | 535 void OpenImportSettingsDialog(); |
536 void OpenAboutChromeDialog(); | 536 void OpenAboutChromeDialog(); |
537 void OpenUpdateChromeDialog(); | 537 void OpenUpdateChromeDialog(); |
538 void OpenHelpTab(); | 538 void OpenHelpTab(); |
539 // Used by the "Get themes" link in the options dialog. | 539 // Used by the "Get themes" link in the options dialog. |
540 void OpenThemeGalleryTabAndActivate(); | 540 void OpenThemeGalleryTabAndActivate(); |
| 541 void OpenAutoFillHelpTabAndActivate(); |
541 #if defined(OS_CHROMEOS) | 542 #if defined(OS_CHROMEOS) |
542 void OpenSystemOptionsDialog(); | 543 void OpenSystemOptionsDialog(); |
543 void OpenInternetOptionsDialog(); | 544 void OpenInternetOptionsDialog(); |
544 #endif | 545 #endif |
545 | 546 |
546 virtual void UpdateDownloadShelfVisibility(bool visible); | 547 virtual void UpdateDownloadShelfVisibility(bool visible); |
547 | 548 |
548 ///////////////////////////////////////////////////////////////////////////// | 549 ///////////////////////////////////////////////////////////////////////////// |
549 | 550 |
550 // Sets the value of homepage related prefs to new values. Since we do not | 551 // Sets the value of homepage related prefs to new values. Since we do not |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 mutable BooleanPrefMember use_vertical_tabs_; | 1058 mutable BooleanPrefMember use_vertical_tabs_; |
1058 | 1059 |
1059 // The profile's tab restore service. The service is owned by the profile, | 1060 // The profile's tab restore service. The service is owned by the profile, |
1060 // and we install ourselves as an observer. | 1061 // and we install ourselves as an observer. |
1061 TabRestoreService* tab_restore_service_; | 1062 TabRestoreService* tab_restore_service_; |
1062 | 1063 |
1063 DISALLOW_COPY_AND_ASSIGN(Browser); | 1064 DISALLOW_COPY_AND_ASSIGN(Browser); |
1064 }; | 1065 }; |
1065 | 1066 |
1066 #endif // CHROME_BROWSER_BROWSER_H_ | 1067 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |