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

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

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
« ceee/ie/plugin/toolband/tool_band.h ('K') | « ceee/ie/plugin/toolband/tool_band.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/toolband/tool_band.cc
===================================================================
--- ceee/ie/plugin/toolband/tool_band.cc (revision 71215)
+++ ceee/ie/plugin/toolband/tool_band.cc (working copy)
@@ -330,7 +330,6 @@
if (chrome_frame_) {
ChromeFrameEvents::DispEventUnadvise(chrome_frame_);
}
- chrome_frame_window_ = NULL;
if (web_browser_ && listening_to_browser_events_) {
HostingBrowserEvents::DispEventUnadvise(web_browser_,
@@ -349,6 +348,11 @@
// Grab a self-reference.
GetUnknown()->AddRef();
+ if (NULL == chrome_frame_container_window_.Create(m_hWnd)) {
+ LOG(ERROR) << "Failed to create window. " << com::LogWe();
+ return -1;
+ }
+
// Create a host window instance.
base::win::ScopedComPtr<IAxWinHostWindow> host;
HRESULT hr = CAxHostWindow::CreateInstance(host.Receive());
@@ -372,23 +376,14 @@
}
// And attach it to our window.
- hr = host->AttachControl(chrome_frame_, m_hWnd);
+ hr = host->AttachControl(chrome_frame_,
+ chrome_frame_container_window_.m_hWnd);
if (FAILED(hr)) {
LOG(ERROR) << "Failed to attach Chrome Frame to the host. " <<
com::LogHr(hr);
return 1;
}
- // Get the GCF window and hide it for now.
- CComQIPtr<IOleWindow> ole_window(chrome_frame_);
- DCHECK(ole_window != NULL);
- if (SUCCEEDED(ole_window->GetWindow(&chrome_frame_window_.m_hWnd))) {
- // We hide the chrome frame window until onload in order to avoid
- // seeing the "Aw Snap" that sometimes otherwise occurs during Chrome
- // initialization.
- chrome_frame_window_.ShowWindow(SW_HIDE);
- }
-
// Hook up the chrome frame event listener.
hr = ChromeFrameEvents::DispEventAdvise(chrome_frame_);
if (FAILED(hr)) {
@@ -398,23 +393,6 @@
return 0;
}
-void ToolBand::OnPaint(CDCHandle dc) {
- RECT rc = {};
- if (GetUpdateRect(&rc, FALSE)) {
- PAINTSTRUCT ps = {};
- BeginPaint(&ps);
-
- BOOL ret = GetClientRect(&rc);
- DCHECK(ret);
- CString text;
- text.Format(L"Google CEEE. No Chrome Frame found. Instance: 0x%p. ID: %d!)",
- this, band_id_);
- ::DrawText(ps.hdc, text, -1, &rc, DT_SINGLELINE | DT_BOTTOM | DT_CENTER);
-
- EndPaint(&ps);
- }
-}
-
void ToolBand::OnSize(UINT type, CSize size) {
LOG(INFO) << "ToolBand::OnSize(" << type << ", "
<< size.cx << "x" << size.cy << ")";
@@ -584,9 +562,9 @@
}
STDMETHODIMP_(void) ToolBand::OnCfOnload(IDispatch* event) {
- if (chrome_frame_window_.IsWindow()) {
+ if (chrome_frame_container_window_.IsWindow()) {
VLOG(1) << "Showing the Chrome Frame window.";
- chrome_frame_window_.ShowWindow(SW_SHOW);
+ chrome_frame_container_window_.ShowWindow(SW_SHOW);
}
}
« ceee/ie/plugin/toolband/tool_band.h ('K') | « ceee/ie/plugin/toolband/tool_band.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698