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

Side by Side Diff: chrome_frame/chrome_frame_activex.cc

Issue 6251005: Fix for the InstallFlowTest failures seen on the chrome frame IE6 builder. Th... (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome_frame/chrome_frame_activex.h" 5 #include "chrome_frame/chrome_frame_activex.h"
6 6
7 #include <wininet.h> 7 #include <wininet.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <map> 10 #include <map>
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 684
685 hr = bho->SetSite(web_browser2); 685 hr = bho->SetSite(web_browser2);
686 if (FAILED(hr)) { 686 if (FAILED(hr)) {
687 NOTREACHED() << "ChromeFrame BHO SetSite failed. Error:" 687 NOTREACHED() << "ChromeFrame BHO SetSite failed. Error:"
688 << base::StringPrintf(" 0x%08X", hr); 688 << base::StringPrintf(" 0x%08X", hr);
689 return hr; 689 return hr;
690 } 690 }
691 691
692 web_browser2->PutProperty(base::win::ScopedBstr(bho_class_id_as_string), 692 web_browser2->PutProperty(base::win::ScopedBstr(bho_class_id_as_string),
693 base::win::ScopedVariant(bho)); 693 base::win::ScopedVariant(bho));
694 return S_OK; 694
695 hr = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT_REFRESH, NULL, 0, 0);
696 if (FAILED(hr)) {
697 DLOG(ERROR) << "Failed to refresh user agent string from registry. "
698 << "UrlMkSetSessionOption returned "
699 << base::StringPrintf("0x%08x", hr);
700 }
701 return hr;
695 } 702 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698