| 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/debugger/devtools_toggle_action.h" | 10 #include "chrome/browser/debugger/devtools_toggle_action.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 void TogglePagePinnedToStartScreen(Browser* browser); | 96 void TogglePagePinnedToStartScreen(Browser* browser); |
| 97 void SavePage(Browser* browser); | 97 void SavePage(Browser* browser); |
| 98 bool CanSavePage(const Browser* browser); | 98 bool CanSavePage(const Browser* browser); |
| 99 void ShowFindBar(Browser* browser); | 99 void ShowFindBar(Browser* browser); |
| 100 void ShowPageInfo(Browser* browser, | 100 void ShowPageInfo(Browser* browser, |
| 101 content::WebContents* web_contents, | 101 content::WebContents* web_contents, |
| 102 const GURL& url, | 102 const GURL& url, |
| 103 const content::SSLStatus& ssl, | 103 const content::SSLStatus& ssl, |
| 104 bool show_history); | 104 bool show_history); |
| 105 void ShowChromeToMobileBubble(Browser* browser); | 105 void ShowChromeToMobileBubble(Browser* browser); |
| 106 void ShareCurrentPage(Browser* browser); | |
| 107 void Print(Browser* browser); | 106 void Print(Browser* browser); |
| 108 bool CanPrint(const Browser* browser); | 107 bool CanPrint(const Browser* browser); |
| 109 void AdvancedPrint(Browser* browser); | 108 void AdvancedPrint(Browser* browser); |
| 110 bool CanAdvancedPrint(const Browser* browser); | 109 bool CanAdvancedPrint(const Browser* browser); |
| 111 void PrintToDestination(Browser* browser); | 110 void PrintToDestination(Browser* browser); |
| 112 void EmailPageLocation(Browser* browser); | 111 void EmailPageLocation(Browser* browser); |
| 113 bool CanEmailPageLocation(const Browser* browser); | 112 bool CanEmailPageLocation(const Browser* browser); |
| 114 void Cut(Browser* browser); | 113 void Cut(Browser* browser); |
| 115 void Copy(Browser* browser); | 114 void Copy(Browser* browser); |
| 116 void Paste(Browser* browser); | 115 void Paste(Browser* browser); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 bool CanViewSource(const Browser* browser); | 154 bool CanViewSource(const Browser* browser); |
| 156 | 155 |
| 157 void CreateApplicationShortcuts(Browser* browser); | 156 void CreateApplicationShortcuts(Browser* browser); |
| 158 bool CanCreateApplicationShortcuts(const Browser* browser); | 157 bool CanCreateApplicationShortcuts(const Browser* browser); |
| 159 | 158 |
| 160 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); | 159 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); |
| 161 | 160 |
| 162 } // namespace chrome | 161 } // namespace chrome |
| 163 | 162 |
| 164 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 163 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| OLD | NEW |