| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 void OpenFile(); | 565 void OpenFile(); |
| 566 void OpenCreateShortcutsDialog(); | 566 void OpenCreateShortcutsDialog(); |
| 567 void ToggleDevToolsWindow(DevToolsToggleAction action); | 567 void ToggleDevToolsWindow(DevToolsToggleAction action); |
| 568 void OpenTaskManager(bool highlight_background_resources); | 568 void OpenTaskManager(bool highlight_background_resources); |
| 569 void OpenBugReportDialog(); | 569 void OpenBugReportDialog(); |
| 570 | 570 |
| 571 void ToggleBookmarkBar(); | 571 void ToggleBookmarkBar(); |
| 572 | 572 |
| 573 void OpenBookmarkManager(); | 573 void OpenBookmarkManager(); |
| 574 void OpenBookmarkManagerForNode(int64 node_id); | 574 void OpenBookmarkManagerForNode(int64 node_id); |
| 575 void OpenBookmarkManagerEditNode(int64 node_id); |
| 576 void OpenBookmarkManagerAddNodeIn(int64 node_id); |
| 575 void ShowAppMenu(); | 577 void ShowAppMenu(); |
| 576 void ShowHistoryTab(); | 578 void ShowHistoryTab(); |
| 577 void ShowDownloadsTab(); | 579 void ShowDownloadsTab(); |
| 578 void ShowExtensionsTab(); | 580 void ShowExtensionsTab(); |
| 579 void ShowAboutConflictsTab(); | 581 void ShowAboutConflictsTab(); |
| 580 void ShowBrokenPageTab(TabContents* contents); | 582 void ShowBrokenPageTab(TabContents* contents); |
| 581 void ShowOptionsTab(const std::string& sub_page); | 583 void ShowOptionsTab(const std::string& sub_page); |
| 582 // Shows the Content Settings page for a given content type. | 584 // Shows the Content Settings page for a given content type. |
| 583 void ShowContentSettingsPage(ContentSettingsType content_type); | 585 void ShowContentSettingsPage(ContentSettingsType content_type); |
| 584 void OpenClearBrowsingDataDialog(); | 586 void OpenClearBrowsingDataDialog(); |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 | 1282 |
| 1281 scoped_ptr<InstantController> instant_; | 1283 scoped_ptr<InstantController> instant_; |
| 1282 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1284 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1283 | 1285 |
| 1284 BookmarkBar::State bookmark_bar_state_; | 1286 BookmarkBar::State bookmark_bar_state_; |
| 1285 | 1287 |
| 1286 DISALLOW_COPY_AND_ASSIGN(Browser); | 1288 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1287 }; | 1289 }; |
| 1288 | 1290 |
| 1289 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1291 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |