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

Side by Side Diff: Source/bindings/scripts/CodeGeneratorV8.pm

Issue 14670019: Add a deprecation warning for document.clear() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Change message slightly Created 7 years, 7 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
« no previous file with comments | « LayoutTests/fast/dom/document-clear-expected.txt ('k') | Source/core/html/HTMLDocument.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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;
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/document-clear-expected.txt ('k') | Source/core/html/HTMLDocument.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698