| 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 void OpenUpdateChromeDialog(); | 633 void OpenUpdateChromeDialog(); |
| 634 void ShowHelpTab(); | 634 void ShowHelpTab(); |
| 635 void OpenAutofillHelpTabAndActivate(); | 635 void OpenAutofillHelpTabAndActivate(); |
| 636 void OpenPrivacyDashboardTabAndActivate(); | 636 void OpenPrivacyDashboardTabAndActivate(); |
| 637 void OpenSearchEngineOptionsDialog(); | 637 void OpenSearchEngineOptionsDialog(); |
| 638 #if defined(FILE_MANAGER_EXTENSION) | 638 #if defined(FILE_MANAGER_EXTENSION) |
| 639 void OpenFileManager(); | 639 void OpenFileManager(); |
| 640 #endif | 640 #endif |
| 641 #if defined(OS_CHROMEOS) | 641 #if defined(OS_CHROMEOS) |
| 642 void LockScreen(); | 642 void LockScreen(); |
| 643 void Shutdown(); |
| 643 void OpenSystemOptionsDialog(); | 644 void OpenSystemOptionsDialog(); |
| 644 void OpenInternetOptionsDialog(); | 645 void OpenInternetOptionsDialog(); |
| 645 void OpenLanguageOptionsDialog(); | 646 void OpenLanguageOptionsDialog(); |
| 646 void OpenSystemTabAndActivate(); | 647 void OpenSystemTabAndActivate(); |
| 647 void OpenMobilePlanTabAndActivate(); | 648 void OpenMobilePlanTabAndActivate(); |
| 648 #endif | 649 #endif |
| 649 void OpenPluginsTabAndActivate(); | 650 void OpenPluginsTabAndActivate(); |
| 650 void ShowSyncSetup(); | 651 void ShowSyncSetup(); |
| 651 void ToggleSpeechInput(); | 652 void ToggleSpeechInput(); |
| 652 | 653 |
| (...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 | 1429 |
| 1429 scoped_refptr<FullscreenController> fullscreen_controller_; | 1430 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1430 | 1431 |
| 1431 // True if the browser window has been shown at least once. | 1432 // True if the browser window has been shown at least once. |
| 1432 bool window_has_shown_; | 1433 bool window_has_shown_; |
| 1433 | 1434 |
| 1434 DISALLOW_COPY_AND_ASSIGN(Browser); | 1435 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1435 }; | 1436 }; |
| 1436 | 1437 |
| 1437 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1438 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |