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

Side by Side Diff: Source/WebCore/rendering/RenderLayer.cpp

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698