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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 void FocusAppMenu(); | 520 void FocusAppMenu(); |
521 void FocusBookmarksToolbar(); | 521 void FocusBookmarksToolbar(); |
522 void FocusChromeOSStatus(); | 522 void FocusChromeOSStatus(); |
523 void FocusNextPane(); | 523 void FocusNextPane(); |
524 void FocusPreviousPane(); | 524 void FocusPreviousPane(); |
525 | 525 |
526 // Show various bits of UI | 526 // Show various bits of UI |
527 void OpenFile(); | 527 void OpenFile(); |
528 void OpenCreateShortcutsDialog(); | 528 void OpenCreateShortcutsDialog(); |
529 void ToggleDevToolsWindow(DevToolsToggleAction action); | 529 void ToggleDevToolsWindow(DevToolsToggleAction action); |
530 void OpenTaskManager(); | 530 void OpenTaskManager(bool highlight_background_resources); |
531 void OpenBugReportDialog(); | 531 void OpenBugReportDialog(); |
532 | 532 |
533 void ToggleBookmarkBar(); | 533 void ToggleBookmarkBar(); |
534 | 534 |
535 void OpenBookmarkManager(); | 535 void OpenBookmarkManager(); |
536 void ShowAppMenu(); | 536 void ShowAppMenu(); |
537 void ShowBookmarkManagerTab(); | 537 void ShowBookmarkManagerTab(); |
538 void ShowHistoryTab(); | 538 void ShowHistoryTab(); |
539 void ShowDownloadsTab(); | 539 void ShowDownloadsTab(); |
540 void ShowExtensionsTab(); | 540 void ShowExtensionsTab(); |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 // and we install ourselves as an observer. | 1144 // and we install ourselves as an observer. |
1145 TabRestoreService* tab_restore_service_; | 1145 TabRestoreService* tab_restore_service_; |
1146 | 1146 |
1147 scoped_ptr<InstantController> instant_; | 1147 scoped_ptr<InstantController> instant_; |
1148 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1148 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
1149 | 1149 |
1150 DISALLOW_COPY_AND_ASSIGN(Browser); | 1150 DISALLOW_COPY_AND_ASSIGN(Browser); |
1151 }; | 1151 }; |
1152 | 1152 |
1153 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1153 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |