From 965722ff0e981ac0775648460be766c829a10a2b Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Wed, 20 Oct 2010 15:50:30 +0000 Subject: Remove scoped_bstr_win, fix all callers to use the new location. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3748012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63216 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/bho.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome_frame/bho.cc') diff --git a/chrome_frame/bho.cc b/chrome_frame/bho.cc index a8e31a7..b6dc10b 100644 --- a/chrome_frame/bho.cc +++ b/chrome_frame/bho.cc @@ -9,9 +9,9 @@ #include "base/file_path.h" #include "base/logging.h" #include "base/path_service.h" -#include "base/scoped_bstr_win.h" #include "base/string_util.h" #include "base/stringprintf.h" +#include "base/win/scoped_bstr.h" #include "chrome_tab.h" // NOLINT #include "chrome_frame/crash_reporting/crash_metrics.h" #include "chrome_frame/extra_system_apis.h" @@ -219,7 +219,7 @@ bool DocumentHasEmbeddedItems(IUnknown* browser) { // via document.write. // TODO(ananta) // Revisit this and come up with a better approach. - ScopedBstr location_url; + base::win::ScopedBstr location_url; embedded_web_browser2->get_LocationURL(location_url.Receive()); std::wstring location_url_string; -- cgit v1.1