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

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

Issue 18856015: [oilpan] Move CSSFontFace to the managed heap (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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/core/css/CSSFontFace.h » ('j') | Source/core/css/CSSFontFaceSource.h » ('J')
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "CSSPageRule" => 1, 75 "CSSPageRule" => 1,
76 "CSSStyleDeclaration" => 1, 76 "CSSStyleDeclaration" => 1,
77 "CSSStyleRule" => 1, 77 "CSSStyleRule" => 1,
78 "CSSSupportsRule" => 1, 78 "CSSSupportsRule" => 1,
79 "WebKitCSSFilterRule" => 1, 79 "WebKitCSSFilterRule" => 1,
80 "WebKitCSSRegionRule" => 1, 80 "WebKitCSSRegionRule" => 1,
81 "WebKitCSSKeyframeRule" => 1, 81 "WebKitCSSKeyframeRule" => 1,
82 "WebKitCSSKeyframesRule" => 1, 82 "WebKitCSSKeyframesRule" => 1,
83 "CSSPrimitiveValue" => 1, 83 "CSSPrimitiveValue" => 1,
84 "CSSValue" => 1, 84 "CSSValue" => 1,
85 "CSSFontFace" => 1,
85 "WebKitCSSFilterValue" => 1, 86 "WebKitCSSFilterValue" => 1,
86 "WebKitCSSMixFunctionValue" => 1, 87 "WebKitCSSMixFunctionValue" => 1,
87 "WebKitCSSTransformValue" => 1, 88 "WebKitCSSTransformValue" => 1,
88 "SVGColor" => 1, 89 "SVGColor" => 1,
89 "SVGPaint" => 1, 90 "SVGPaint" => 1,
90 "CSSValueList" => 1, 91 "CSSValueList" => 1,
91 "StyleSheetList" => 1, 92 "StyleSheetList" => 1,
92 "DOMWindowCSS" => 1, 93 "DOMWindowCSS" => 1,
93 "StyleMedia" => 1, 94 "StyleMedia" => 1,
94 "ViewportStyleResolver" => 1, 95 "ViewportStyleResolver" => 1,
(...skipping 5554 matching lines...) Expand 10 before | Expand all | Expand 10 after
5649 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { 5650 if ($currentInterface->extendedAttributes->{$extendedAttribute}) {
5650 $found = 1; 5651 $found = 1;
5651 } 5652 }
5652 return 1 if $found; 5653 return 1 if $found;
5653 }, 0); 5654 }, 0);
5654 5655
5655 return $found; 5656 return $found;
5656 } 5657 }
5657 5658
5658 1; 5659 1;
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/CSSFontFace.h » ('j') | Source/core/css/CSSFontFaceSource.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698