diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 15:50:30 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 15:50:30 +0000 |
commit | 965722ff0e981ac0775648460be766c829a10a2b (patch) | |
tree | 7d8cd2362a1f216eb64aca9ffaefa3d0774e58dd /chrome/service | |
parent | 41a95c41d16de968f5d1b02f1ffcccc287147825 (diff) | |
download | chromium_src-965722ff0e981ac0775648460be766c829a10a2b.zip chromium_src-965722ff0e981ac0775648460be766c829a10a2b.tar.gz chromium_src-965722ff0e981ac0775648460be766c829a10a2b.tar.bz2 |
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
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/print_system_win.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc index c89dd9d..fc3cc02 100644 --- a/chrome/service/cloud_print/print_system_win.cc +++ b/chrome/service/cloud_print/print_system_win.cc @@ -14,11 +14,10 @@ #include "base/lock.h" #include "base/file_util.h" #include "base/object_watcher.h" -#include "base/scoped_bstr_win.h" -#include "base/scoped_comptr_win.h" -#include "base/scoped_handle_win.h" #include "base/scoped_ptr.h" #include "base/utf_string_conversions.h" +#include "base/win/scoped_bstr.h" +#include "base/win/scoped_comptr.h" #include "chrome/service/cloud_print/cloud_print_consts.h" #include "chrome/service/service_process.h" #include "chrome/service/service_utility_process_host.h" @@ -29,6 +28,9 @@ #pragma comment(lib, "prntvpt.lib") #pragma comment(lib, "rpcrt4.lib") +using base::win::ScopedBstr; +using base::win::ScopedComPtr; + namespace { class DevMode { |