Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: chrome/common/common_param_traits_unittest.cc

Issue 6695013: Cleanup NativeMetafile (win) interface and EMF class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <string.h> 5 #include <string.h>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/scoped_ptr.h" 8 #include "base/scoped_ptr.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/common/common_param_traits.h" 10 #include "chrome/common/common_param_traits.h"
11 #include "chrome/common/geoposition.h" 11 #include "chrome/common/geoposition.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 234
235 // Tests printing::Emf serialization. 235 // Tests printing::Emf serialization.
236 // TODO(sanjeevr): Make this test meaningful for non-Windows platforms. We 236 // TODO(sanjeevr): Make this test meaningful for non-Windows platforms. We
237 // need to initialize the metafile using alternate means on the other OSes. 237 // need to initialize the metafile using alternate means on the other OSes.
238 #if defined(OS_WIN) 238 #if defined(OS_WIN)
239 TEST(IPCMessageTest, Metafile) { 239 TEST(IPCMessageTest, Metafile) {
240 scoped_ptr<printing::NativeMetafile> metafile( 240 scoped_ptr<printing::NativeMetafile> metafile(
241 printing::NativeMetafileFactory::CreateMetafile()); 241 printing::NativeMetafileFactory::CreateMetafile());
242 RECT test_rect = {0, 0, 100, 100}; 242 RECT test_rect = {0, 0, 100, 100};
243 // Create a metafile using the screen DC as a reference. 243 // Create a metafile using the screen DC as a reference.
244 metafile->CreateDc(NULL, NULL); 244 metafile->Init();
245 metafile->Close(); 245 metafile->Close();
246 246
247 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL); 247 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL);
248 IPC::ParamTraits<printing::NativeMetafile>::Write(&msg, *metafile); 248 IPC::ParamTraits<printing::NativeMetafile>::Write(&msg, *metafile);
249 249
250 scoped_ptr<printing::NativeMetafile> output( 250 scoped_ptr<printing::NativeMetafile> output(
251 printing::NativeMetafileFactory::CreateMetafile()); 251 printing::NativeMetafileFactory::CreateMetafile());
252 void* iter = NULL; 252 void* iter = NULL;
253 EXPECT_TRUE(IPC::ParamTraits<printing::NativeMetafile>::Read( 253 EXPECT_TRUE(IPC::ParamTraits<printing::NativeMetafile>::Read(
254 &msg, &iter, output.get())); 254 &msg, &iter, output.get()));
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 301
302 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL); 302 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL);
303 IPC::ParamTraits<net::HostPortPair>::Write(&msg, input); 303 IPC::ParamTraits<net::HostPortPair>::Write(&msg, input);
304 304
305 net::HostPortPair output; 305 net::HostPortPair output;
306 void* iter = NULL; 306 void* iter = NULL;
307 EXPECT_TRUE(IPC::ParamTraits<net::HostPortPair>::Read(&msg, &iter, &output)); 307 EXPECT_TRUE(IPC::ParamTraits<net::HostPortPair>::Read(&msg, &iter, &output));
308 EXPECT_EQ(input.host(), output.host()); 308 EXPECT_EQ(input.host(), output.host());
309 EXPECT_EQ(input.port(), output.port()); 309 EXPECT_EQ(input.port(), output.port());
310 } 310 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/print_web_view_helper_win.cc » ('j') | chrome/service/service_utility_process_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698