| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 | 625 |
| 626 // Zoom | 626 // Zoom |
| 627 void Zoom(content::PageZoom zoom); | 627 void Zoom(content::PageZoom zoom); |
| 628 | 628 |
| 629 // Focus various bits of UI | 629 // Focus various bits of UI |
| 630 void FocusToolbar(); | 630 void FocusToolbar(); |
| 631 void FocusLocationBar(); // Also selects any existing text. | 631 void FocusLocationBar(); // Also selects any existing text. |
| 632 void FocusSearch(); | 632 void FocusSearch(); |
| 633 void FocusAppMenu(); | 633 void FocusAppMenu(); |
| 634 void FocusBookmarksToolbar(); | 634 void FocusBookmarksToolbar(); |
| 635 void FocusChromeOSStatus(); | |
| 636 void FocusNextPane(); | 635 void FocusNextPane(); |
| 637 void FocusPreviousPane(); | 636 void FocusPreviousPane(); |
| 638 | 637 |
| 639 // Show various bits of UI | 638 // Show various bits of UI |
| 640 void OpenFile(); | 639 void OpenFile(); |
| 641 void OpenCreateShortcutsDialog(); | 640 void OpenCreateShortcutsDialog(); |
| 642 void ToggleDevToolsWindow(DevToolsToggleAction action); | 641 void ToggleDevToolsWindow(DevToolsToggleAction action); |
| 643 void OpenTaskManager(bool highlight_background_resources); | 642 void OpenTaskManager(bool highlight_background_resources); |
| 644 void OpenFeedbackDialog(); | 643 void OpenFeedbackDialog(); |
| 645 | 644 |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1511 bool window_has_shown_; | 1510 bool window_has_shown_; |
| 1512 | 1511 |
| 1513 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 1512 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
| 1514 // before DidEndColorChooser is called. | 1513 // before DidEndColorChooser is called. |
| 1515 scoped_ptr<content::ColorChooser> color_chooser_; | 1514 scoped_ptr<content::ColorChooser> color_chooser_; |
| 1516 | 1515 |
| 1517 DISALLOW_COPY_AND_ASSIGN(Browser); | 1516 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1518 }; | 1517 }; |
| 1519 | 1518 |
| 1520 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1519 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |