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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 void ConvertPopupToTabbedBrowser(); | 564 void ConvertPopupToTabbedBrowser(); |
565 // In kiosk mode, the first toggle is valid, the rest is discarded. | 565 // In kiosk mode, the first toggle is valid, the rest is discarded. |
566 void ToggleFullscreenMode(); | 566 void ToggleFullscreenMode(); |
567 // See the description of | 567 // See the description of |
568 // FullscreenController::ToggleFullscreenModeWithExtension. | 568 // FullscreenController::ToggleFullscreenModeWithExtension. |
569 void ToggleFullscreenModeWithExtension(const GURL& extension_url); | 569 void ToggleFullscreenModeWithExtension(const GURL& extension_url); |
570 #if defined(OS_MACOSX) | 570 #if defined(OS_MACOSX) |
571 void TogglePresentationMode(); | 571 void TogglePresentationMode(); |
572 #endif | 572 #endif |
573 void Exit(); | 573 void Exit(); |
574 #if defined(OS_CHROMEOS) | |
575 void ShowKeyboardOverlay(); | |
576 #endif | |
577 | 574 |
578 // Page-related commands | 575 // Page-related commands |
579 void BookmarkCurrentPage(); | 576 void BookmarkCurrentPage(); |
580 void SavePage(); | 577 void SavePage(); |
581 void ViewSelectedSource(); | 578 void ViewSelectedSource(); |
582 void ShowFindBar(); | 579 void ShowFindBar(); |
583 void ShowPageInfo(content::WebContents* web_contents, | 580 void ShowPageInfo(content::WebContents* web_contents, |
584 const GURL& url, | 581 const GURL& url, |
585 const content::SSLStatus& ssl, | 582 const content::SSLStatus& ssl, |
586 bool show_history); | 583 bool show_history); |
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1483 bool window_has_shown_; | 1480 bool window_has_shown_; |
1484 | 1481 |
1485 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 1482 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
1486 // before DidEndColorChooser is called. | 1483 // before DidEndColorChooser is called. |
1487 scoped_ptr<content::ColorChooser> color_chooser_; | 1484 scoped_ptr<content::ColorChooser> color_chooser_; |
1488 | 1485 |
1489 DISALLOW_COPY_AND_ASSIGN(Browser); | 1486 DISALLOW_COPY_AND_ASSIGN(Browser); |
1490 }; | 1487 }; |
1491 | 1488 |
1492 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1489 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |