Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: ceee/ie/plugin/bho/infobar_browser_window.h

Issue 4563001: Adding a privileged callback used in IE CF to check whether to show... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ceee/ie/common/common.gyp ('k') | ceee/ie/plugin/bho/infobar_browser_window.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ceee/ie/common/common.gyp ('k') | ceee/ie/plugin/bho/infobar_browser_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698