| 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_COMMANDS_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/devtools/devtools_toggle_action.h" | 10 #include "chrome/browser/devtools/devtools_toggle_action.h" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 content::WebContents* DuplicateTabAt(Browser* browser, int index); | 90 content::WebContents* DuplicateTabAt(Browser* browser, int index); |
| 91 bool CanDuplicateTabAt(Browser* browser, int index); | 91 bool CanDuplicateTabAt(Browser* browser, int index); |
| 92 void ConvertPopupToTabbedBrowser(Browser* browser); | 92 void ConvertPopupToTabbedBrowser(Browser* browser); |
| 93 void Exit(); | 93 void Exit(); |
| 94 void BookmarkCurrentPage(Browser* browser); | 94 void BookmarkCurrentPage(Browser* browser); |
| 95 void BookmarkCurrentPageFromStar(Browser* browser); | 95 void BookmarkCurrentPageFromStar(Browser* browser); |
| 96 bool CanBookmarkCurrentPage(const Browser* browser); | 96 bool CanBookmarkCurrentPage(const Browser* browser); |
| 97 void BookmarkAllTabs(Browser* browser); | 97 void BookmarkAllTabs(Browser* browser); |
| 98 bool CanBookmarkAllTabs(const Browser* browser); | 98 bool CanBookmarkAllTabs(const Browser* browser); |
| 99 void Translate(Browser* browser); | 99 void Translate(Browser* browser); |
| 100 void ManagePasswordsForPage(Browser* browser); | |
| 101 void TogglePagePinnedToStartScreen(Browser* browser); | 100 void TogglePagePinnedToStartScreen(Browser* browser); |
| 102 void SavePage(Browser* browser); | 101 void SavePage(Browser* browser); |
| 103 bool CanSavePage(const Browser* browser); | 102 bool CanSavePage(const Browser* browser); |
| 104 void ShowFindBar(Browser* browser); | 103 void ShowFindBar(Browser* browser); |
| 105 void ShowWebsiteSettings(Browser* browser, | 104 void ShowWebsiteSettings(Browser* browser, |
| 106 content::WebContents* web_contents, | 105 content::WebContents* web_contents, |
| 107 const GURL& url, | 106 const GURL& url, |
| 108 const content::SSLStatus& ssl); | 107 const content::SSLStatus& ssl); |
| 109 void Print(Browser* browser); | 108 void Print(Browser* browser); |
| 110 bool CanPrint(const Browser* browser); | 109 bool CanPrint(const Browser* browser); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 void CreateApplicationShortcuts(Browser* browser); | 159 void CreateApplicationShortcuts(Browser* browser); |
| 161 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); | 160 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); |
| 162 bool CanCreateApplicationShortcuts(const Browser* browser); | 161 bool CanCreateApplicationShortcuts(const Browser* browser); |
| 163 bool CanCreateBookmarkApp(const Browser* browser); | 162 bool CanCreateBookmarkApp(const Browser* browser); |
| 164 | 163 |
| 165 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); | 164 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); |
| 166 | 165 |
| 167 } // namespace chrome | 166 } // namespace chrome |
| 168 | 167 |
| 169 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 168 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| OLD | NEW |