| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 void ShowDownloadsTab(); | 525 void ShowDownloadsTab(); |
| 526 void ShowExtensionsTab(); | 526 void ShowExtensionsTab(); |
| 527 void ShowBrokenPageTab(TabContents* contents); | 527 void ShowBrokenPageTab(TabContents* contents); |
| 528 void OpenClearBrowsingDataDialog(); | 528 void OpenClearBrowsingDataDialog(); |
| 529 void OpenOptionsDialog(); | 529 void OpenOptionsDialog(); |
| 530 void OpenKeywordEditor(); | 530 void OpenKeywordEditor(); |
| 531 void OpenPasswordManager(); | 531 void OpenPasswordManager(); |
| 532 void OpenSyncMyBookmarksDialog(); | 532 void OpenSyncMyBookmarksDialog(); |
| 533 void OpenImportSettingsDialog(); | 533 void OpenImportSettingsDialog(); |
| 534 void OpenAboutChromeDialog(); | 534 void OpenAboutChromeDialog(); |
| 535 void OpenUpdateChromeDialog(); |
| 535 void OpenHelpTab(); | 536 void OpenHelpTab(); |
| 536 // Used by the "Get themes" link in the options dialog. | 537 // Used by the "Get themes" link in the options dialog. |
| 537 void OpenThemeGalleryTabAndActivate(); | 538 void OpenThemeGalleryTabAndActivate(); |
| 538 #if defined(OS_CHROMEOS) | 539 #if defined(OS_CHROMEOS) |
| 539 void OpenSystemOptionsDialog(); | 540 void OpenSystemOptionsDialog(); |
| 540 void OpenInternetOptionsDialog(); | 541 void OpenInternetOptionsDialog(); |
| 541 #endif | 542 #endif |
| 542 void AutoFillDefaultProfile(); | 543 void AutoFillDefaultProfile(); |
| 543 | 544 |
| 544 virtual void UpdateDownloadShelfVisibility(bool visible); | 545 virtual void UpdateDownloadShelfVisibility(bool visible); |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 // The extension app associated with this window, if any. | 1032 // The extension app associated with this window, if any. |
| 1032 Extension* extension_app_; | 1033 Extension* extension_app_; |
| 1033 | 1034 |
| 1034 // Tracks the display mode of the tabstrip. | 1035 // Tracks the display mode of the tabstrip. |
| 1035 mutable BooleanPrefMember use_vertical_tabs_; | 1036 mutable BooleanPrefMember use_vertical_tabs_; |
| 1036 | 1037 |
| 1037 DISALLOW_COPY_AND_ASSIGN(Browser); | 1038 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1038 }; | 1039 }; |
| 1039 | 1040 |
| 1040 #endif // CHROME_BROWSER_BROWSER_H_ | 1041 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |