| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // @file | 5 // @file |
| 6 // Infobar browser window. This is the window that hosts CF and navigates it | 6 // Infobar browser window. This is the window that hosts CF and navigates it |
| 7 // to the infobar URL. | 7 // to the infobar URL. |
| 8 | 8 |
| 9 #ifndef CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ | 9 #ifndef CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ |
| 10 #define CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ | 10 #define CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 MSG_WM_CREATE(OnCreate) | 81 MSG_WM_CREATE(OnCreate) |
| 82 MSG_WM_DESTROY(OnDestroy) | 82 MSG_WM_DESTROY(OnDestroy) |
| 83 END_MSG_MAP() | 83 END_MSG_MAP() |
| 84 | 84 |
| 85 // @name IChromeFramePrivileged implementation. | 85 // @name IChromeFramePrivileged implementation. |
| 86 // @{ | 86 // @{ |
| 87 STDMETHOD(GetWantsPrivileged)(boolean *wants_privileged); | 87 STDMETHOD(GetWantsPrivileged)(boolean *wants_privileged); |
| 88 STDMETHOD(GetChromeExtraArguments)(BSTR *args); | 88 STDMETHOD(GetChromeExtraArguments)(BSTR *args); |
| 89 STDMETHOD(GetChromeProfileName)(BSTR *args); | 89 STDMETHOD(GetChromeProfileName)(BSTR *args); |
| 90 STDMETHOD(GetExtensionApisToAutomate)(BSTR *args); | 90 STDMETHOD(GetExtensionApisToAutomate)(BSTR *args); |
| 91 STDMETHOD(ShouldShowVersionMismatchDialog)(); |
| 91 // @} | 92 // @} |
| 92 | 93 |
| 93 // @name ChromeFrame event handlers. | 94 // @name ChromeFrame event handlers. |
| 94 // @{ | 95 // @{ |
| 95 STDMETHOD_(void, OnCfReadyStateChanged)(LONG state); | 96 STDMETHOD_(void, OnCfReadyStateChanged)(LONG state); |
| 96 STDMETHOD_(void, OnCfExtensionReady)(BSTR path, int response); | 97 STDMETHOD_(void, OnCfExtensionReady)(BSTR path, int response); |
| 97 STDMETHOD_(void, OnCfClose)(); | 98 STDMETHOD_(void, OnCfClose)(); |
| 98 // @} | 99 // @} |
| 99 | 100 |
| 100 // Initializes the browser window to the given site. | 101 // Initializes the browser window to the given site. |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 148 |
| 148 // Navigate the browser to url_ if the browser has been created. | 149 // Navigate the browser to url_ if the browser has been created. |
| 149 void Navigate(); | 150 void Navigate(); |
| 150 | 151 |
| 151 DISALLOW_COPY_AND_ASSIGN(InfobarBrowserWindow); | 152 DISALLOW_COPY_AND_ASSIGN(InfobarBrowserWindow); |
| 152 }; | 153 }; |
| 153 | 154 |
| 154 } // namespace infobar_api | 155 } // namespace infobar_api |
| 155 | 156 |
| 156 #endif // CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ | 157 #endif // CEEE_IE_PLUGIN_BHO_INFOBAR_BROWSER_WINDOW_H_ |
| OLD | NEW |