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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 void SavePage(Browser* browser); | 72 void SavePage(Browser* browser); |
73 void ShowFindBar(Browser* browser); | 73 void ShowFindBar(Browser* browser); |
74 void ShowPageInfo(Browser* browser, | 74 void ShowPageInfo(Browser* browser, |
75 content::WebContents* web_contents, | 75 content::WebContents* web_contents, |
76 const GURL& url, | 76 const GURL& url, |
77 const content::SSLStatus& ssl, | 77 const content::SSLStatus& ssl, |
78 bool show_history); | 78 bool show_history); |
79 void ShowChromeToMobileBubble(Browser* browser); | 79 void ShowChromeToMobileBubble(Browser* browser); |
80 void Print(Browser* browser); | 80 void Print(Browser* browser); |
81 void AdvancedPrint(Browser* browser); | 81 void AdvancedPrint(Browser* browser); |
| 82 void PrintToDestination(Browser* browser); |
82 void EmailPageLocation(Browser* browser); | 83 void EmailPageLocation(Browser* browser); |
83 void Cut(Browser* browser); | 84 void Cut(Browser* browser); |
84 void Copy(Browser* browser); | 85 void Copy(Browser* browser); |
85 void Paste(Browser* browser); | 86 void Paste(Browser* browser); |
86 void Find(Browser* browser); | 87 void Find(Browser* browser); |
87 void FindNext(Browser* browser); | 88 void FindNext(Browser* browser); |
88 void FindPrevious(Browser* browser); | 89 void FindPrevious(Browser* browser); |
89 void FindInPage(Browser* browser, bool find_next, bool forward_direction); | 90 void FindInPage(Browser* browser, bool find_next, bool forward_direction); |
90 void Zoom(Browser* browser, content::PageZoom zoom); | 91 void Zoom(Browser* browser, content::PageZoom zoom); |
91 void FocusToolbar(Browser* browser); | 92 void FocusToolbar(Browser* browser); |
(...skipping 20 matching lines...) Expand all Loading... |
112 void ViewSource(Browser* browser, | 113 void ViewSource(Browser* browser, |
113 TabContents* tab, | 114 TabContents* tab, |
114 const GURL& url, | 115 const GURL& url, |
115 const std::string& content_state); | 116 const std::string& content_state); |
116 | 117 |
117 void ViewSelectedSource(Browser* browser); | 118 void ViewSelectedSource(Browser* browser); |
118 | 119 |
119 } // namespace chrome | 120 } // namespace chrome |
120 | 121 |
121 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 122 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
OLD | NEW |