OLD | NEW |
1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
5 # Copyright (C) 2006 Apple Computer, Inc. | 5 # Copyright (C) 2006 Apple Computer, Inc. |
6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. | 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. |
7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. | 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. |
9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 # Copyright (C) 2012 Ericsson AB. All rights reserved. | 10 # Copyright (C) 2012 Ericsson AB. All rights reserved. |
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1258 } | 1258 } |
1259 | 1259 |
1260 return ""; | 1260 return ""; |
1261 } | 1261 } |
1262 | 1262 |
1263 sub GenerateDeprecationNotification | 1263 sub GenerateDeprecationNotification |
1264 { | 1264 { |
1265 my $deprecateAs = shift; | 1265 my $deprecateAs = shift; |
1266 if ($deprecateAs) { | 1266 if ($deprecateAs) { |
1267 AddToImplIncludes("core/page/PageConsole.h"); | 1267 AddToImplIncludes("core/page/PageConsole.h"); |
| 1268 AddToImplIncludes("core/page/UseCounter.h"); |
1268 return " UseCounter::countDeprecation(activeDOMWindow(), UseCounter::
${deprecateAs});\n"; | 1269 return " UseCounter::countDeprecation(activeDOMWindow(), UseCounter::
${deprecateAs});\n"; |
1269 } | 1270 } |
1270 return ""; | 1271 return ""; |
1271 } | 1272 } |
1272 | 1273 |
1273 sub GenerateActivityLogging | 1274 sub GenerateActivityLogging |
1274 { | 1275 { |
1275 my $accessType = shift; | 1276 my $accessType = shift; |
1276 my $interface = shift; | 1277 my $interface = shift; |
1277 my $propertyName = shift; | 1278 my $propertyName = shift; |
(...skipping 4389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5667 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { | 5668 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { |
5668 $found = 1; | 5669 $found = 1; |
5669 } | 5670 } |
5670 return 1 if $found; | 5671 return 1 if $found; |
5671 }, 0); | 5672 }, 0); |
5672 | 5673 |
5673 return $found; | 5674 return $found; |
5674 } | 5675 } |
5675 | 5676 |
5676 1; | 5677 1; |
OLD | NEW |