| OLD | NEW |
| 1 // Copyright (c) 2011 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> |
| 11 #include <string> | 11 #include <string> |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 void FocusBookmarksToolbar(); | 594 void FocusBookmarksToolbar(); |
| 595 void FocusChromeOSStatus(); | 595 void FocusChromeOSStatus(); |
| 596 void FocusNextPane(); | 596 void FocusNextPane(); |
| 597 void FocusPreviousPane(); | 597 void FocusPreviousPane(); |
| 598 | 598 |
| 599 // Show various bits of UI | 599 // Show various bits of UI |
| 600 void OpenFile(); | 600 void OpenFile(); |
| 601 void OpenCreateShortcutsDialog(); | 601 void OpenCreateShortcutsDialog(); |
| 602 void ToggleDevToolsWindow(DevToolsToggleAction action); | 602 void ToggleDevToolsWindow(DevToolsToggleAction action); |
| 603 void OpenTaskManager(bool highlight_background_resources); | 603 void OpenTaskManager(bool highlight_background_resources); |
| 604 void OpenBugReportDialog(); | 604 void OpenFeedbackDialog(); |
| 605 | 605 |
| 606 void ToggleBookmarkBar(); | 606 void ToggleBookmarkBar(); |
| 607 | 607 |
| 608 void OpenBookmarkManager(); | 608 void OpenBookmarkManager(); |
| 609 void OpenBookmarkManagerForNode(int64 node_id); | 609 void OpenBookmarkManagerForNode(int64 node_id); |
| 610 void OpenBookmarkManagerEditNode(int64 node_id); | 610 void OpenBookmarkManagerEditNode(int64 node_id); |
| 611 void OpenBookmarkManagerAddNodeIn(int64 node_id); | 611 void OpenBookmarkManagerAddNodeIn(int64 node_id); |
| 612 void ShowAppMenu(); | 612 void ShowAppMenu(); |
| 613 void ShowAvatarMenu(); | 613 void ShowAvatarMenu(); |
| 614 void ShowHistoryTab(); | 614 void ShowHistoryTab(); |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 | 1425 |
| 1426 scoped_refptr<FullscreenController> fullscreen_controller_; | 1426 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1427 | 1427 |
| 1428 // True if the browser window has been shown at least once. | 1428 // True if the browser window has been shown at least once. |
| 1429 bool window_has_shown_; | 1429 bool window_has_shown_; |
| 1430 | 1430 |
| 1431 DISALLOW_COPY_AND_ASSIGN(Browser); | 1431 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1432 }; | 1432 }; |
| 1433 | 1433 |
| 1434 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1434 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |