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

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

Issue 244493002: Oilpan: add transition types to track interface objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add crbug.com/365260 crashing test + expectation Created 6 years, 8 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
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 bool get(const String&, unsigned&) const; 82 bool get(const String&, unsigned&) const;
83 bool get(const String&, unsigned long&) const; 83 bool get(const String&, unsigned long&) const;
84 bool get(const String&, unsigned long long&) const; 84 bool get(const String&, unsigned long long&) const;
85 bool get(const String&, RefPtrWillBeMember<DOMWindow>&) const; 85 bool get(const String&, RefPtrWillBeMember<DOMWindow>&) const;
86 bool get(const String&, RefPtrWillBeMember<Storage>&) const; 86 bool get(const String&, RefPtrWillBeMember<Storage>&) const;
87 bool get(const String&, MessagePortArray&) const; 87 bool get(const String&, MessagePortArray&) const;
88 bool get(const String&, RefPtr<Uint8Array>&) const; 88 bool get(const String&, RefPtr<Uint8Array>&) const;
89 bool get(const String&, RefPtr<ArrayBufferView>&) const; 89 bool get(const String&, RefPtr<ArrayBufferView>&) const;
90 bool get(const String&, RefPtr<MIDIPort>&) const; 90 bool get(const String&, RefPtr<MIDIPort>&) const;
91 bool get(const String&, RefPtr<MediaKeyError>&) const; 91 bool get(const String&, RefPtr<MediaKeyError>&) const;
92 bool get(const String&, RefPtr<TrackBase>&) const; 92 bool get(const String&, RefPtrWillBeMember<TrackBase>&) const;
93 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionError>&) const; 93 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionError>&) const;
94 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionResult>&) const; 94 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionResult>&) const;
95 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionResultList>&) co nst; 95 bool get(const String&, RefPtrWillBeMember<SpeechRecognitionResultList>&) co nst;
96 bool get(const String&, Member<Gamepad>&) const; 96 bool get(const String&, Member<Gamepad>&) const;
97 bool get(const String&, RefPtr<MediaStream>&) const; 97 bool get(const String&, RefPtr<MediaStream>&) const;
98 bool get(const String&, RefPtr<EventTarget>&) const; 98 bool get(const String&, RefPtr<EventTarget>&) const;
99 bool get(const String&, HashSet<AtomicString>&) const; 99 bool get(const String&, HashSet<AtomicString>&) const;
100 bool get(const String&, Dictionary&) const; 100 bool get(const String&, Dictionary&) const;
101 bool get(const String&, Vector<String>&) const; 101 bool get(const String&, Vector<String>&) const;
102 bool get(const String&, ArrayValue&) const; 102 bool get(const String&, ArrayValue&) const;
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) 340 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
341 return true; 341 return true;
342 342
343 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type.")); 343 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type."));
344 return false; 344 return false;
345 } 345 }
346 346
347 } 347 }
348 348
349 #endif // Dictionary_h 349 #endif // Dictionary_h
OLDNEW
« no previous file with comments | « LayoutTests/media/track/tracklist-is-reachable-no-crash-expected.txt ('k') | Source/bindings/v8/Dictionary.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698