| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |