diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 15:36:13 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 15:36:13 +0000 |
commit | e244c6a58fb6c077d97518c44434bdc32391b51b (patch) | |
tree | 47f8022a22caa900211d8d65a501a6778d476969 /printing | |
parent | be2ee28674c1d0441a6357518e2f4d990a33636e (diff) | |
download | chromium_src-e244c6a58fb6c077d97518c44434bdc32391b51b.zip chromium_src-e244c6a58fb6c077d97518c44434bdc32391b51b.tar.gz chromium_src-e244c6a58fb6c077d97518c44434bdc32391b51b.tar.bz2 |
Removing emf record constructor that is not used.
BUG=None
TEST=None
CID=5008
Review URL: http://codereview.chromium.org/3106005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57997 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing')
-rw-r--r-- | printing/emf_win.cc | 5 | ||||
-rw-r--r-- | printing/emf_win.h | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/printing/emf_win.cc b/printing/emf_win.cc index e93acf2..aa1832b 100644 --- a/printing/emf_win.cc +++ b/printing/emf_win.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -192,9 +192,6 @@ int CALLBACK Emf::SafePlaybackProc(HDC hdc, return 1; } -Emf::Record::Record() { -} - Emf::Record::Record(const EnumerationContext* context, const ENHMETARECORD* record) : record_(record), diff --git a/printing/emf_win.h b/printing/emf_win.h index 9581d77..fc947cb 100644 --- a/printing/emf_win.h +++ b/printing/emf_win.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -122,8 +122,6 @@ struct Emf::EnumerationContext { // The entries become invalid once Emf::CloseEmf() is called. class Emf::Record { public: - Record(); - // Plays the record. bool Play() const; |