Issue 2576: proxy_resolver_winhttp.cc
http://code.google.com/p/chromium/issues/detail?id=2576

Comment #2 by [EMAIL PROTECTED]:
Ok I think I know what happened. It is in fact that you haven't deleted the  
Debug\
directory after installing a newer SDK.

 From your screen shot, '__out_data_source' is not defined. This macro is  
defined in
specstrings.h.

Here is my explanation of why you hit this issue:
net.vcproj uses a precompiled header named precompiled_net.cc. This  
precompiled
header includes windows.h but doesn't include winhttp.h. Since you haven't  
deleted
the intermediary files, a stale net.pch file was used and that result in  
this error
because of the header content mismatch (old specstrings.h + newer  
winhttp.h). Note
that compiling in release would be fine since PCH is disabled in release.

Also, the reason net.sln builds is simply that is outputs its files in  
src\net\Debug
instead of src\chrome\Debug, so no stale net.pch file was used, hence no  
issue.

Please delete the intermediary directory before trying again.



Issue attribute updates:
        Labels: -Area-Unknown Area-Tools

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-bugs" group.
To post to this group, send email to chromium-bugs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to