summaryrefslogtreecommitdiffstats
path: root/chrome/service/cloud_print/print_system_win.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-31 01:02:47 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-31 01:02:47 +0000
commit0142bd4f74b04cf27929e5288be100c09cff224d (patch)
tree930b5fbc7a4fadee2a823274e00cb47233ee9d2e /chrome/service/cloud_print/print_system_win.cc
parent81516d6ea9c90491af15ee7009c449d253a89ec6 (diff)
downloadchromium_src-0142bd4f74b04cf27929e5288be100c09cff224d.zip
chromium_src-0142bd4f74b04cf27929e5288be100c09cff224d.tar.gz
chromium_src-0142bd4f74b04cf27929e5288be100c09cff224d.tar.bz2
Remove 'using' declaration of ScopedHDC from scoped_handle_win.h
BUG=None TEST=trybots Review URL: http://codereview.chromium.org/6031011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/cloud_print/print_system_win.cc')
-rw-r--r--chrome/service/cloud_print/print_system_win.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc
index 4369b54..8d92e3dfb 100644
--- a/chrome/service/cloud_print/print_system_win.cc
+++ b/chrome/service/cloud_print/print_system_win.cc
@@ -13,6 +13,7 @@
#include "base/utf_string_conversions.h"
#include "base/win/scoped_bstr.h"
#include "base/win/scoped_comptr.h"
+#include "base/win/scoped_hdc.h"
#include "chrome/service/cloud_print/cloud_print_consts.h"
#include "chrome/service/service_process.h"
#include "chrome/service/service_utility_process_host.h"
@@ -508,7 +509,7 @@ class PrintSystemWin : public PrintSystem {
PlatformJobId job_id_;
PrintSystem::JobSpooler::Delegate* delegate_;
int saved_dc_;
- ScopedHDC printer_dc_;
+ base::win::ScopedHDC printer_dc_;
FilePath print_data_file_path_;
DISALLOW_COPY_AND_ASSIGN(JobSpoolerWin::Core);
};