| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * Other contributors: | 6 * Other contributors: |
| 7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
| 9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
| 10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 #include "SVGNames.h" | 116 #include "SVGNames.h" |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 #if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS) | 119 #if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS) |
| 120 #include "CustomFilterGlobalContext.h" | 120 #include "CustomFilterGlobalContext.h" |
| 121 #include "CustomFilterOperation.h" | 121 #include "CustomFilterOperation.h" |
| 122 #include "CustomFilterValidatedProgram.h" | 122 #include "CustomFilterValidatedProgram.h" |
| 123 #include "ValidatedCustomFilterOperation.h" | 123 #include "ValidatedCustomFilterOperation.h" |
| 124 #endif | 124 #endif |
| 125 | 125 |
| 126 #if PLATFORM(BLACKBERRY) | |
| 127 #define DISABLE_ROUNDED_CORNER_CLIPPING | |
| 128 #endif | |
| 129 | |
| 130 #define MIN_INTERSECT_FOR_REVEAL 32 | 126 #define MIN_INTERSECT_FOR_REVEAL 32 |
| 131 | 127 |
| 132 using namespace std; | 128 using namespace std; |
| 133 | 129 |
| 134 namespace WebCore { | 130 namespace WebCore { |
| 135 | 131 |
| 136 using namespace HTMLNames; | 132 using namespace HTMLNames; |
| 137 | 133 |
| 138 const int MinimumWidthWhileResizing = 100; | 134 const int MinimumWidthWhileResizing = 100; |
| 139 const int MinimumHeightWhileResizing = 40; | 135 const int MinimumHeightWhileResizing = 40; |
| (...skipping 6206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6346 } | 6342 } |
| 6347 } | 6343 } |
| 6348 | 6344 |
| 6349 void showLayerTree(const WebCore::RenderObject* renderer) | 6345 void showLayerTree(const WebCore::RenderObject* renderer) |
| 6350 { | 6346 { |
| 6351 if (!renderer) | 6347 if (!renderer) |
| 6352 return; | 6348 return; |
| 6353 showLayerTree(renderer->enclosingLayer()); | 6349 showLayerTree(renderer->enclosingLayer()); |
| 6354 } | 6350 } |
| 6355 #endif | 6351 #endif |
| OLD | NEW |