| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 // Shows the Content Settings page for a given content type. | 571 // Shows the Content Settings page for a given content type. |
| 572 void ShowContentSettingsPage(ContentSettingsType content_type); | 572 void ShowContentSettingsPage(ContentSettingsType content_type); |
| 573 void OpenClearBrowsingDataDialog(); | 573 void OpenClearBrowsingDataDialog(); |
| 574 void OpenOptionsDialog(); | 574 void OpenOptionsDialog(); |
| 575 void OpenPasswordManager(); | 575 void OpenPasswordManager(); |
| 576 void OpenSyncMyBookmarksDialog(); | 576 void OpenSyncMyBookmarksDialog(); |
| 577 void OpenImportSettingsDialog(); | 577 void OpenImportSettingsDialog(); |
| 578 void OpenInstantConfirmDialog(); | 578 void OpenInstantConfirmDialog(); |
| 579 void OpenAboutChromeDialog(); | 579 void OpenAboutChromeDialog(); |
| 580 void OpenUpdateChromeDialog(); | 580 void OpenUpdateChromeDialog(); |
| 581 void OpenHelpTab(); | 581 void ShowHelpTab(); |
| 582 // Used by the "Get themes" link in the options dialog. | 582 // Used by the "Get themes" link in the options dialog. |
| 583 void OpenThemeGalleryTabAndActivate(); | 583 void OpenThemeGalleryTabAndActivate(); |
| 584 void OpenAutofillHelpTabAndActivate(); | 584 void OpenAutofillHelpTabAndActivate(); |
| 585 void OpenPrivacyDashboardTabAndActivate(); | 585 void OpenPrivacyDashboardTabAndActivate(); |
| 586 void OpenSearchEngineOptionsDialog(); | 586 void OpenSearchEngineOptionsDialog(); |
| 587 #if defined(OS_CHROMEOS) | 587 #if defined(OS_CHROMEOS) |
| 588 void OpenFileManager(); | 588 void OpenFileManager(); |
| 589 void OpenSystemOptionsDialog(); | 589 void OpenSystemOptionsDialog(); |
| 590 void OpenInternetOptionsDialog(); | 590 void OpenInternetOptionsDialog(); |
| 591 void OpenLanguageOptionsDialog(); | 591 void OpenLanguageOptionsDialog(); |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 | 1258 |
| 1259 scoped_ptr<InstantController> instant_; | 1259 scoped_ptr<InstantController> instant_; |
| 1260 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1260 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1261 | 1261 |
| 1262 BookmarkBar::State bookmark_bar_state_; | 1262 BookmarkBar::State bookmark_bar_state_; |
| 1263 | 1263 |
| 1264 DISALLOW_COPY_AND_ASSIGN(Browser); | 1264 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1265 }; | 1265 }; |
| 1266 | 1266 |
| 1267 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1267 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |