diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 04:58:36 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 04:58:36 +0000 |
commit | acc134844001b556ef162ad267dac826b3000ff0 (patch) | |
tree | a50d9986b827e6c4784d63e0930e28b8ca0f7374 /chrome/common/common_param_traits_unittest.cc | |
parent | 55f2c51627eb66c3a742d19d5ed735966d118827 (diff) | |
download | chromium_src-acc134844001b556ef162ad267dac826b3000ff0.zip chromium_src-acc134844001b556ef162ad267dac826b3000ff0.tar.gz chromium_src-acc134844001b556ef162ad267dac826b3000ff0.tar.bz2 |
Cleanup NativeMetafile (win) interface and EMF class.
- Rename CreateDc to Init() and remove unused argument (all non-test calls were CreateDc(NULL, NULL). [This matches cross platform interface.]
- Remove CreateFileBackedDc from the NativeMetafile interface and make InitToFile() in the EMF class.
- Remove CreateFromFile from the NativeMetafile interface and make it InitFromFile() in the EMF class.
- Move the CloseEmf method into the destructor, making the Emf class a use once class (matches actual use).
BUG=NONE
TEST=NONE
Review URL: http://codereview.chromium.org/6695013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78666 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/common_param_traits_unittest.cc')
-rw-r--r-- | chrome/common/common_param_traits_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/common_param_traits_unittest.cc b/chrome/common/common_param_traits_unittest.cc index 7928032..f9aabe1 100644 --- a/chrome/common/common_param_traits_unittest.cc +++ b/chrome/common/common_param_traits_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -241,7 +241,7 @@ TEST(IPCMessageTest, Metafile) { printing::NativeMetafileFactory::CreateMetafile()); RECT test_rect = {0, 0, 100, 100}; // Create a metafile using the screen DC as a reference. - metafile->CreateDc(NULL, NULL); + metafile->Init(); metafile->Close(); IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL); |