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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 void ManagePasswordsForPage(Browser* browser); | 102 void ManagePasswordsForPage(Browser* browser); |
103 void TogglePagePinnedToStartScreen(Browser* browser); | 103 void TogglePagePinnedToStartScreen(Browser* browser); |
104 void SavePage(Browser* browser); | 104 void SavePage(Browser* browser); |
105 bool CanSavePage(const Browser* browser); | 105 bool CanSavePage(const Browser* browser); |
106 void ShowFindBar(Browser* browser); | 106 void ShowFindBar(Browser* browser); |
107 void ShowWebsiteSettings(Browser* browser, | 107 void ShowWebsiteSettings(Browser* browser, |
108 content::WebContents* web_contents, | 108 content::WebContents* web_contents, |
109 const GURL& url, | 109 const GURL& url, |
110 const content::SSLStatus& ssl); | 110 const content::SSLStatus& ssl); |
111 void Print(Browser* browser); | 111 void Print(Browser* browser); |
112 bool CanPrint(Browser* browser); | 112 bool CanPrint(const Browser* browser); |
113 void AdvancedPrint(Browser* browser); | 113 void AdvancedPrint(Browser* browser); |
114 bool CanAdvancedPrint(Browser* browser); | 114 bool CanAdvancedPrint(const Browser* browser); |
115 void PrintToDestination(Browser* browser); | 115 void PrintToDestination(Browser* browser); |
116 void EmailPageLocation(Browser* browser); | 116 void EmailPageLocation(Browser* browser); |
117 bool CanEmailPageLocation(const Browser* browser); | 117 bool CanEmailPageLocation(const Browser* browser); |
118 void Cut(Browser* browser); | 118 void Cut(Browser* browser); |
119 void Copy(Browser* browser); | 119 void Copy(Browser* browser); |
120 void Paste(Browser* browser); | 120 void Paste(Browser* browser); |
121 void Find(Browser* browser); | 121 void Find(Browser* browser); |
122 void FindNext(Browser* browser); | 122 void FindNext(Browser* browser); |
123 void FindPrevious(Browser* browser); | 123 void FindPrevious(Browser* browser); |
124 void FindInPage(Browser* browser, bool find_next, bool forward_direction); | 124 void FindInPage(Browser* browser, bool find_next, bool forward_direction); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 void CreateApplicationShortcuts(Browser* browser); | 163 void CreateApplicationShortcuts(Browser* browser); |
164 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); | 164 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); |
165 bool CanCreateApplicationShortcuts(const Browser* browser); | 165 bool CanCreateApplicationShortcuts(const Browser* browser); |
166 bool CanCreateBookmarkApp(const Browser* browser); | 166 bool CanCreateBookmarkApp(const Browser* browser); |
167 | 167 |
168 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); | 168 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); |
169 | 169 |
170 } // namespace chrome | 170 } // namespace chrome |
171 | 171 |
172 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 172 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
OLD | NEW |