| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 void FocusBookmarksToolbar(); | 598 void FocusBookmarksToolbar(); |
| 599 void FocusChromeOSStatus(); | 599 void FocusChromeOSStatus(); |
| 600 void FocusNextPane(); | 600 void FocusNextPane(); |
| 601 void FocusPreviousPane(); | 601 void FocusPreviousPane(); |
| 602 | 602 |
| 603 // Show various bits of UI | 603 // Show various bits of UI |
| 604 void OpenFile(); | 604 void OpenFile(); |
| 605 void OpenCreateShortcutsDialog(); | 605 void OpenCreateShortcutsDialog(); |
| 606 void ToggleDevToolsWindow(DevToolsToggleAction action); | 606 void ToggleDevToolsWindow(DevToolsToggleAction action); |
| 607 void OpenTaskManager(bool highlight_background_resources); | 607 void OpenTaskManager(bool highlight_background_resources); |
| 608 void OpenBugReportDialog(); | 608 void OpenFeedbackDialog(); |
| 609 | 609 |
| 610 void ToggleBookmarkBar(); | 610 void ToggleBookmarkBar(); |
| 611 | 611 |
| 612 void OpenBookmarkManager(); | 612 void OpenBookmarkManager(); |
| 613 void OpenBookmarkManagerForNode(int64 node_id); | 613 void OpenBookmarkManagerForNode(int64 node_id); |
| 614 void OpenBookmarkManagerEditNode(int64 node_id); | 614 void OpenBookmarkManagerEditNode(int64 node_id); |
| 615 void OpenBookmarkManagerAddNodeIn(int64 node_id); | 615 void OpenBookmarkManagerAddNodeIn(int64 node_id); |
| 616 void ShowAppMenu(); | 616 void ShowAppMenu(); |
| 617 void ShowAvatarMenu(); | 617 void ShowAvatarMenu(); |
| 618 void ShowHistoryTab(); | 618 void ShowHistoryTab(); |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1429 | 1429 |
| 1430 scoped_refptr<FullscreenController> fullscreen_controller_; | 1430 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1431 | 1431 |
| 1432 // True if the browser window has been shown at least once. | 1432 // True if the browser window has been shown at least once. |
| 1433 bool window_has_shown_; | 1433 bool window_has_shown_; |
| 1434 | 1434 |
| 1435 DISALLOW_COPY_AND_ASSIGN(Browser); | 1435 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1436 }; | 1436 }; |
| 1437 | 1437 |
| 1438 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1438 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |