diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-08 02:04:22 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-08 02:04:22 +0000 |
commit | 5930cb6dacd08ecf46410cd7dd4f96724e353e5f (patch) | |
tree | 372cf2f78441a70355efb20571ca80c6bc6ec201 /printing/emf_win.h | |
parent | 969f815e00942ba68f6ddd7bf4b0ce9f6da9479c (diff) | |
download | chromium_src-5930cb6dacd08ecf46410cd7dd4f96724e353e5f.zip chromium_src-5930cb6dacd08ecf46410cd7dd4f96724e353e5f.tar.gz chromium_src-5930cb6dacd08ecf46410cd7dd4f96724e353e5f.tar.bz2 |
printing: replace the deprecated macro (DISALLOW_EVIL_CONSTRUCTORS).
Use DISALLOW_COPY_AND_ASSIGN instead.
Patch contributed by Thiago Farina
Review URL: http://codereview.chromium.org/460087
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34030 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/emf_win.h')
-rw-r--r-- | printing/emf_win.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/printing/emf_win.h b/printing/emf_win.h index 4170e87..7a21b1b 100644 --- a/printing/emf_win.h +++ b/printing/emf_win.h @@ -103,7 +103,7 @@ class Emf { // Valid when generating EMF data through a virtual HDC. HDC hdc_; - DISALLOW_EVIL_CONSTRUCTORS(Emf); + DISALLOW_COPY_AND_ASSIGN(Emf); }; struct Emf::EnumerationContext { @@ -173,7 +173,7 @@ class Emf::Enumerator { EnumerationContext context_; - DISALLOW_EVIL_CONSTRUCTORS(Enumerator); + DISALLOW_COPY_AND_ASSIGN(Enumerator); }; } // namespace printing |