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

Side by Side Diff: third_party/WebKit/Source/platform/geometry/IntRect.h

Issue 1855303002: Replace filter outsets with bounds mapping in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: senorblanco review comments Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 return a.location() != b.location() || a.size() != b.size(); 225 return a.location() != b.location() || a.size() != b.size();
226 } 226 }
227 227
228 #if OS(MACOSX) 228 #if OS(MACOSX)
229 PLATFORM_EXPORT IntRect enclosingIntRect(const CGRect&); 229 PLATFORM_EXPORT IntRect enclosingIntRect(const CGRect&);
230 #if defined(__OBJC__) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES) 230 #if defined(__OBJC__) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
231 PLATFORM_EXPORT IntRect enclosingIntRect(const NSRect&); 231 PLATFORM_EXPORT IntRect enclosingIntRect(const NSRect&);
232 #endif 232 #endif
233 #endif 233 #endif
234 234
235 // Redeclared here to avoid ODR issues.
236 // See platform/testing/GeometryPrinters.h.
237 void PrintTo(const IntRect&, std::ostream*);
238
235 } // namespace blink 239 } // namespace blink
236 240
237 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::IntRect); 241 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::IntRect);
238 242
239 #endif // IntRect_h 243 #endif // IntRect_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698