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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_win.cc

Issue 5607001: Removed kChromiumRendererIdProperty window property.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | chrome/common/chrome_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host_view_win.cc
===================================================================
--- chrome/browser/renderer_host/render_widget_host_view_win.cc (revision 67940)
+++ chrome/browser/renderer_host/render_widget_host_view_win.cc (working copy)
@@ -308,16 +308,6 @@
void RenderWidgetHostViewWin::CreateWnd(HWND parent) {
Create(parent); // ATL function to create the window.
-
- // Add a property indicating that a particular renderer is associated with
- // this window. Used by the GPU process to validate window handles it
- // receives from renderer processes. As this is used by a separate process we
- // have to use ScopedProp here instead of ViewProp.
- int renderer_id = render_widget_host_->process()->id();
- renderer_id_prop_.reset(
sky 2010/12/02 20:27:26 Remove renderer_id_prop_ from the header,the forwa
- new app::win::ScopedProp(m_hWnd,
- chrome::kChromiumRendererIdProperty,
- reinterpret_cast<HANDLE>(renderer_id)));
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | chrome/common/chrome_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698