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

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

Issue 17351003: Rename ContextDestructionObserver to ContextLifecycleObserver (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reapplied Created 7 years, 6 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 | « no previous file | Source/bindings/tests/results/V8TestCallback.h » ('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 4412 matching lines...) Expand 10 before | Expand all | Expand 10 after
4423 push(@args, GetNativeTypeForCallbacks($param->type) . " " . $par am->name); 4423 push(@args, GetNativeTypeForCallbacks($param->type) . " " . $par am->name);
4424 } 4424 }
4425 $code .= join(", ", @args); 4425 $code .= join(", ", @args);
4426 $code .= ");\n"; 4426 $code .= ");\n";
4427 $header{classPublic}->add($code); 4427 $header{classPublic}->add($code);
4428 } 4428 }
4429 } 4429 }
4430 4430
4431 $header{classPublic}->add(<<END); 4431 $header{classPublic}->add(<<END);
4432 4432
4433 virtual ScriptExecutionContext* scriptExecutionContext() const { return Cont extDestructionObserver::scriptExecutionContext(); } 4433 virtual ScriptExecutionContext* scriptExecutionContext() const { return Cont extLifecycleObserver::scriptExecutionContext(); }
4434 4434
4435 END 4435 END
4436 $header{classPrivate}->add(<<END); 4436 $header{classPrivate}->add(<<END);
4437 ${v8ClassName}(v8::Handle<v8::Object>, ScriptExecutionContext*); 4437 ${v8ClassName}(v8::Handle<v8::Object>, ScriptExecutionContext*);
4438 4438
4439 ScopedPersistent<v8::Object> m_callback; 4439 ScopedPersistent<v8::Object> m_callback;
4440 RefPtr<DOMWrapperWorld> m_world; 4440 RefPtr<DOMWrapperWorld> m_world;
4441 END 4441 END
4442 } 4442 }
4443 4443
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after
5894 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { 5894 if ($currentInterface->extendedAttributes->{$extendedAttribute}) {
5895 $found = 1; 5895 $found = 1;
5896 } 5896 }
5897 return 1 if $found; 5897 return 1 if $found;
5898 }, 0); 5898 }, 0);
5899 5899
5900 return $found; 5900 return $found;
5901 } 5901 }
5902 5902
5903 1; 5903 1;
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/tests/results/V8TestCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698