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

Side by Side Diff: Source/bindings/v8/Dictionary.h

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ager feedback Created 6 years, 9 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/v8/Dictionary.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 bool get(const String&, double&) const; 74 bool get(const String&, double&) const;
75 bool get(const String&, String&) const; 75 bool get(const String&, String&) const;
76 bool get(const String&, AtomicString&) const; 76 bool get(const String&, AtomicString&) const;
77 bool get(const String&, ScriptValue&) const; 77 bool get(const String&, ScriptValue&) const;
78 bool get(const String&, short&) const; 78 bool get(const String&, short&) const;
79 bool get(const String&, unsigned short&) const; 79 bool get(const String&, unsigned short&) const;
80 bool get(const String&, unsigned&) const; 80 bool get(const String&, unsigned&) const;
81 bool get(const String&, unsigned long&) const; 81 bool get(const String&, unsigned long&) const;
82 bool get(const String&, unsigned long long&) const; 82 bool get(const String&, unsigned long long&) const;
83 bool get(const String&, RefPtr<DOMWindow>&) const; 83 bool get(const String&, RefPtr<DOMWindow>&) const;
84 bool get(const String&, RefPtrWillBeRawPtr<Storage>&) const; 84 bool get(const String&, RefPtrWillBeMember<Storage>&) const;
85 bool get(const String&, MessagePortArray&) const; 85 bool get(const String&, MessagePortArray&) const;
86 bool get(const String&, RefPtr<Uint8Array>&) const; 86 bool get(const String&, RefPtr<Uint8Array>&) const;
87 bool get(const String&, RefPtr<ArrayBufferView>&) const; 87 bool get(const String&, RefPtr<ArrayBufferView>&) const;
88 bool get(const String&, RefPtr<MIDIPort>&) const; 88 bool get(const String&, RefPtr<MIDIPort>&) const;
89 bool get(const String&, RefPtr<MediaKeyError>&) const; 89 bool get(const String&, RefPtr<MediaKeyError>&) const;
90 bool get(const String&, RefPtr<TrackBase>&) const; 90 bool get(const String&, RefPtr<TrackBase>&) const;
91 bool get(const String&, RefPtr<SpeechRecognitionError>&) const; 91 bool get(const String&, RefPtr<SpeechRecognitionError>&) const;
92 bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResult>&) const; 92 bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResult>&) const;
93 bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResultList>&) co nst; 93 bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResultList>&) co nst;
94 bool get(const String&, RefPtr<MediaStream>&) const; 94 bool get(const String&, RefPtr<MediaStream>&) const;
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) 343 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
344 return true; 344 return true;
345 345
346 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type.")); 346 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type."));
347 return false; 347 return false;
348 } 348 }
349 349
350 } 350 }
351 351
352 #endif // Dictionary_h 352 #endif // Dictionary_h
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/v8/Dictionary.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698