| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 #endif | 634 #endif |
| 635 #if defined(OS_CHROMEOS) | 635 #if defined(OS_CHROMEOS) |
| 636 void LockScreen(); | 636 void LockScreen(); |
| 637 void Shutdown(); | 637 void Shutdown(); |
| 638 void OpenSystemOptionsDialog(); | 638 void OpenSystemOptionsDialog(); |
| 639 void OpenInternetOptionsDialog(); | 639 void OpenInternetOptionsDialog(); |
| 640 void OpenLanguageOptionsDialog(); | 640 void OpenLanguageOptionsDialog(); |
| 641 void OpenSystemTabAndActivate(); | 641 void OpenSystemTabAndActivate(); |
| 642 void OpenMobilePlanTabAndActivate(); | 642 void OpenMobilePlanTabAndActivate(); |
| 643 #endif | 643 #endif |
| 644 #if defined(OS_CHROMEOS) && defined(USE_AURA) |
| 645 void OpenCrosh(); |
| 646 #endif |
| 644 void OpenPluginsTabAndActivate(); | 647 void OpenPluginsTabAndActivate(); |
| 645 void ShowSyncSetup(); | 648 void ShowSyncSetup(); |
| 646 void ToggleSpeechInput(); | 649 void ToggleSpeechInput(); |
| 647 | 650 |
| 648 virtual void UpdateDownloadShelfVisibility(bool visible); | 651 virtual void UpdateDownloadShelfVisibility(bool visible); |
| 649 | 652 |
| 650 ///////////////////////////////////////////////////////////////////////////// | 653 ///////////////////////////////////////////////////////////////////////////// |
| 651 | 654 |
| 652 // Sets the value of homepage related prefs to new values. Since we do not | 655 // Sets the value of homepage related prefs to new values. Since we do not |
| 653 // want to change these values for existing users, we can not change the | 656 // want to change these values for existing users, we can not change the |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 | 1442 |
| 1440 scoped_refptr<FullscreenController> fullscreen_controller_; | 1443 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1441 | 1444 |
| 1442 // True if the browser window has been shown at least once. | 1445 // True if the browser window has been shown at least once. |
| 1443 bool window_has_shown_; | 1446 bool window_has_shown_; |
| 1444 | 1447 |
| 1445 DISALLOW_COPY_AND_ASSIGN(Browser); | 1448 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1446 }; | 1449 }; |
| 1447 | 1450 |
| 1448 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1451 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |