Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/PluginClass.h

Issue 11450010: IE6 status bar and FRP fix. Debugging info added. (Closed)
Patch Set: Created Aug. 19, 2013, 8:12 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * http://msdn.microsoft.com/en-us/library/bb250436.aspx 2 * http://msdn.microsoft.com/en-us/library/bb250436.aspx
3 */ 3 */
4 4
5 #ifndef _PLUGIN_CLASS_H_ 5 #ifndef _PLUGIN_CLASS_H_
6 #define _PLUGIN_CLASS_H_ 6 #define _PLUGIN_CLASS_H_
7 7
8 8
9 #include "PluginTypedef.h" 9 #include "PluginTypedef.h"
10 #include "Plugin.h" 10 #include "Plugin.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 private: 132 private:
133 DWORD m_nConnectionID; 133 DWORD m_nConnectionID;
134 HWND m_hBrowserWnd; 134 HWND m_hBrowserWnd;
135 HWND m_hTabWnd; 135 HWND m_hTabWnd;
136 HWND m_hStatusBarWnd; 136 HWND m_hStatusBarWnd;
137 HWND m_hPaneWnd; 137 HWND m_hPaneWnd;
138 WNDPROC m_pWndProcStatus; 138 WNDPROC m_pWndProcStatus;
139 int m_nPaneWidth; 139 int m_nPaneWidth;
140 HANDLE m_hTheme; 140 HANDLE m_hTheme;
141 141
142 CriticalSection m_csStatusBar;
143
142 bool m_isAdviced; 144 bool m_isAdviced;
143 bool m_isInitializedOk; 145 bool m_isInitializedOk;
144 146
145 // Atom pane class 147 // Atom pane class
146 static ATOM s_atomPaneClass; 148 static ATOM s_atomPaneClass;
147 149
148 static ATOM GetAtomPaneClass(); 150 static ATOM GetAtomPaneClass();
149 151
150 // Icons 152 // Icons
151 static HICON s_hIcons[ICON_MAX]; 153 static HICON s_hIcons[ICON_MAX];
(...skipping 28 matching lines...) Expand all
180 static CComQIPtr<IWebBrowser2> s_asyncWebBrowser2; 182 static CComQIPtr<IWebBrowser2> s_asyncWebBrowser2;
181 183
182 static CComQIPtr<IWebBrowser2> GetAsyncBrowser(); 184 static CComQIPtr<IWebBrowser2> GetAsyncBrowser();
183 185
184 }; 186 };
185 187
186 OBJECT_ENTRY_AUTO(__uuidof(PluginClass), CPluginClass) 188 OBJECT_ENTRY_AUTO(__uuidof(PluginClass), CPluginClass)
187 189
188 190
189 #endif // _PLUGIN_CLASS_H_ 191 #endif // _PLUGIN_CLASS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld