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

Unified Diff: ceee/ie/plugin/toolband/tool_band.h

Issue 6245001: Fixed initial rendering of toolbar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ceee/ie/plugin/toolband/tool_band.cc » ('j') | ceee/ie/plugin/toolband/tool_band.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/toolband/tool_band.h
===================================================================
--- ceee/ie/plugin/toolband/tool_band.h (revision 71215)
+++ ceee/ie/plugin/toolband/tool_band.h (working copy)
@@ -55,6 +55,8 @@
ToolBand();
~ToolBand();
+ DECLARE_WND_SUPERCLASS(NULL, TOOLBARCLASSNAME)
Sigurður Ásgeirsson 2011/01/13 14:42:55 Why do we want this class name? Can you add a quic
Vitaly Buka (NO REVIEWS) 2011/01/14 00:06:30 Done.
+
DECLARE_REGISTRY_RESOURCEID_EX(IDR_TOOL_BAND)
BEGIN_REGISTRY_MAP(ToolBand)
REGMAP_UUID("CLSID", CLSID_ToolBand)
@@ -179,7 +181,6 @@
// @name Message handlers.
// @{
- void OnPaint(CDCHandle dc);
void OnSize(UINT type, CSize size);
// @}
@@ -198,6 +199,12 @@
virtual HRESULT SendSessionIdToBho(IUnknown* bho);
private:
+ class EmptyWindow : public CWindowImpl<EmptyWindow> {
+ public:
+ BEGIN_MSG_MAP(EmptyWindow)
+ END_MSG_MAP()
+ };
+
// Initializes the toolband to the given site.
// Called from SetSite.
HRESULT Initialize(IUnknown *site);
@@ -240,8 +247,10 @@
// Our Chrome frame instance and its window.
CComPtr<IChromeFrame> chrome_frame_;
- CWindow chrome_frame_window_;
+ // Hides chrome frame during initialization.
+ EmptyWindow chrome_frame_container_window_;
+
// Indicates whether CloseDW() is being called on this tool band.
bool is_quitting_;
« no previous file with comments | « no previous file | ceee/ie/plugin/toolband/tool_band.cc » ('j') | ceee/ie/plugin/toolband/tool_band.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698