| 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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 void ShowContentSettingsPage(ContentSettingsType content_type); | 586 void ShowContentSettingsPage(ContentSettingsType content_type); |
| 587 void OpenClearBrowsingDataDialog(); | 587 void OpenClearBrowsingDataDialog(); |
| 588 void OpenOptionsDialog(); | 588 void OpenOptionsDialog(); |
| 589 void OpenPasswordManager(); | 589 void OpenPasswordManager(); |
| 590 void OpenSyncMyBookmarksDialog(); | 590 void OpenSyncMyBookmarksDialog(); |
| 591 void OpenImportSettingsDialog(); | 591 void OpenImportSettingsDialog(); |
| 592 void OpenInstantConfirmDialog(); | 592 void OpenInstantConfirmDialog(); |
| 593 void OpenAboutChromeDialog(); | 593 void OpenAboutChromeDialog(); |
| 594 void OpenUpdateChromeDialog(); | 594 void OpenUpdateChromeDialog(); |
| 595 void ShowHelpTab(); | 595 void ShowHelpTab(); |
| 596 // Used by the "Get themes" link in the options dialog. | |
| 597 void OpenThemeGalleryTabAndActivate(); | |
| 598 void OpenAutofillHelpTabAndActivate(); | 596 void OpenAutofillHelpTabAndActivate(); |
| 599 void OpenPrivacyDashboardTabAndActivate(); | 597 void OpenPrivacyDashboardTabAndActivate(); |
| 600 void OpenSearchEngineOptionsDialog(); | 598 void OpenSearchEngineOptionsDialog(); |
| 601 #if defined(FILE_MANAGER_EXTENSION) | 599 #if defined(FILE_MANAGER_EXTENSION) |
| 602 void OpenFileManager(); | 600 void OpenFileManager(); |
| 603 #endif | 601 #endif |
| 604 #if defined(OS_CHROMEOS) | 602 #if defined(OS_CHROMEOS) |
| 605 void OpenSystemOptionsDialog(); | 603 void OpenSystemOptionsDialog(); |
| 606 void OpenInternetOptionsDialog(); | 604 void OpenInternetOptionsDialog(); |
| 607 void OpenLanguageOptionsDialog(); | 605 void OpenLanguageOptionsDialog(); |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1286 | 1284 |
| 1287 scoped_ptr<InstantController> instant_; | 1285 scoped_ptr<InstantController> instant_; |
| 1288 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1286 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1289 | 1287 |
| 1290 BookmarkBar::State bookmark_bar_state_; | 1288 BookmarkBar::State bookmark_bar_state_; |
| 1291 | 1289 |
| 1292 DISALLOW_COPY_AND_ASSIGN(Browser); | 1290 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1293 }; | 1291 }; |
| 1294 | 1292 |
| 1295 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1293 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |