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_FRAME_CFPROXY_PRIVATE_H_ | 5 #ifndef CHROME_FRAME_CFPROXY_PRIVATE_H_ |
6 #define CHROME_FRAME_CFPROXY_PRIVATE_H_ | 6 #define CHROME_FRAME_CFPROXY_PRIVATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 const std::string& origin, const std::string& target); | 73 const std::string& origin, const std::string& target); |
74 virtual void Tab_Reload(int tab); | 74 virtual void Tab_Reload(int tab); |
75 virtual void Tab_Stop(int tab); | 75 virtual void Tab_Stop(int tab); |
76 virtual void Tab_SaveAs(int tab); | 76 virtual void Tab_SaveAs(int tab); |
77 virtual void Tab_Print(int tab); | 77 virtual void Tab_Print(int tab); |
78 virtual void Tab_Cut(int tab); | 78 virtual void Tab_Cut(int tab); |
79 virtual void Tab_Copy(int tab); | 79 virtual void Tab_Copy(int tab); |
80 virtual void Tab_Paste(int tab); | 80 virtual void Tab_Paste(int tab); |
81 virtual void Tab_SelectAll(int tab); | 81 virtual void Tab_SelectAll(int tab); |
82 virtual void Tab_MenuCommand(int tab, int selected_command); | 82 virtual void Tab_MenuCommand(int tab, int selected_command); |
83 virtual void Tab_Zoom(int tab, PageZoom::Function zoom_level); | 83 virtual void Tab_Zoom(int tab, content::PageZoom zoom_level); |
84 virtual void Tab_FontSize(int tab, enum AutomationPageFontSize font_size); | 84 virtual void Tab_FontSize(int tab, enum AutomationPageFontSize font_size); |
85 virtual void Tab_SetInitialFocus(int tab, bool reverse, | 85 virtual void Tab_SetInitialFocus(int tab, bool reverse, |
86 bool restore_focus_to_view); | 86 bool restore_focus_to_view); |
87 virtual void Tab_SetParentWindow(int tab); | 87 virtual void Tab_SetParentWindow(int tab); |
88 virtual void Tab_Resize(int tab); | 88 virtual void Tab_Resize(int tab); |
89 virtual void Tab_ProcessAccelerator(int tab, const MSG& msg); | 89 virtual void Tab_ProcessAccelerator(int tab, const MSG& msg); |
90 | 90 |
91 // Misc. | 91 // Misc. |
92 virtual void Tab_OnHostMoved(int tab); | 92 virtual void Tab_OnHostMoved(int tab); |
93 protected: | 93 protected: |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 }; | 173 }; |
174 | 174 |
175 DISABLE_RUNNABLE_METHOD_REFCOUNT(CFProxy); | 175 DISABLE_RUNNABLE_METHOD_REFCOUNT(CFProxy); |
176 | 176 |
177 // Support functions. | 177 // Support functions. |
178 std::string GenerateChannelId(); | 178 std::string GenerateChannelId(); |
179 std::wstring BuildCmdLine(const std::string& channel_id, | 179 std::wstring BuildCmdLine(const std::string& channel_id, |
180 const FilePath& profile_path, | 180 const FilePath& profile_path, |
181 const std::wstring& extra_args); | 181 const std::wstring& extra_args); |
182 #endif // CHROME_FRAME_CFPROXY_PRIVATE_H_ | 182 #endif // CHROME_FRAME_CFPROXY_PRIVATE_H_ |
OLD | NEW |