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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 void OpenFileManager(); | 665 void OpenFileManager(); |
666 #endif | 666 #endif |
667 #if defined(OS_CHROMEOS) | 667 #if defined(OS_CHROMEOS) |
668 void LockScreen(); | 668 void LockScreen(); |
669 void Shutdown(); | 669 void Shutdown(); |
670 void OpenAdvancedOptionsDialog(); | 670 void OpenAdvancedOptionsDialog(); |
671 void OpenInternetOptionsDialog(); | 671 void OpenInternetOptionsDialog(); |
672 void OpenLanguageOptionsDialog(); | 672 void OpenLanguageOptionsDialog(); |
673 void OpenSystemTabAndActivate(); | 673 void OpenSystemTabAndActivate(); |
674 void OpenMobilePlanTabAndActivate(); | 674 void OpenMobilePlanTabAndActivate(); |
| 675 void OpenAddBluetoothDeviceDialog(); |
675 #endif | 676 #endif |
676 #if defined(OS_CHROMEOS) && defined(USE_AURA) | 677 #if defined(OS_CHROMEOS) && defined(USE_AURA) |
677 void OpenCrosh(); | 678 void OpenCrosh(); |
678 #endif | 679 #endif |
679 void OpenPluginsTabAndActivate(); | 680 void OpenPluginsTabAndActivate(); |
680 void ShowSyncSetup(); | 681 void ShowSyncSetup(); |
681 void ToggleSpeechInput(); | 682 void ToggleSpeechInput(); |
682 | 683 |
683 virtual void UpdateDownloadShelfVisibility(bool visible); | 684 virtual void UpdateDownloadShelfVisibility(bool visible); |
684 | 685 |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1496 bool window_has_shown_; | 1497 bool window_has_shown_; |
1497 | 1498 |
1498 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 1499 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
1499 // before DidEndColorChooser is called. | 1500 // before DidEndColorChooser is called. |
1500 scoped_ptr<content::ColorChooser> color_chooser_; | 1501 scoped_ptr<content::ColorChooser> color_chooser_; |
1501 | 1502 |
1502 DISALLOW_COPY_AND_ASSIGN(Browser); | 1503 DISALLOW_COPY_AND_ASSIGN(Browser); |
1503 }; | 1504 }; |
1504 | 1505 |
1505 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1506 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |