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

Side by Side Diff: Source/platform/geometry/mac/FloatSizeMac.mm

Issue 68103014: Move some core/platform/graphics/mac files to geometry (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Export IntSize/IntPoint Created 7 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2005 Nokia. All rights reserved. 3 * Copyright (C) 2005 Nokia. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 FloatSize::operator NSSize() const 38 FloatSize::operator NSSize() const
39 { 39 {
40 return NSMakeSize(m_width, m_height); 40 return NSMakeSize(m_width, m_height);
41 } 41 }
42 42
43 #endif 43 #endif
44 44
45 } 45 }
OLDNEW
« no previous file with comments | « Source/platform/geometry/mac/FloatRectMac.mm ('k') | Source/platform/geometry/mac/IntPointMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698