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

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

Issue 47073007: Bindings: Remove special cases for DOMStringList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 1 month 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 | « Source/bindings/tests/results/V8TestObjectPython.cpp ('k') | Source/bindings/v8/V8Binding.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 /* 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 24 matching lines...) Expand all
35 #include "V8SpeechRecognitionResult.h" 35 #include "V8SpeechRecognitionResult.h"
36 #include "V8SpeechRecognitionResultList.h" 36 #include "V8SpeechRecognitionResultList.h"
37 #include "V8Storage.h" 37 #include "V8Storage.h"
38 #include "V8VoidCallback.h" 38 #include "V8VoidCallback.h"
39 #include "V8Window.h" 39 #include "V8Window.h"
40 #include "bindings/v8/ArrayValue.h" 40 #include "bindings/v8/ArrayValue.h"
41 #include "bindings/v8/V8Binding.h" 41 #include "bindings/v8/V8Binding.h"
42 #include "bindings/v8/V8Utilities.h" 42 #include "bindings/v8/V8Utilities.h"
43 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" 43 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h"
44 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" 44 #include "bindings/v8/custom/V8Uint8ArrayCustom.h"
45 #include "core/dom/DOMStringList.h"
46 #include "modules/indexeddb/IDBKeyRange.h" 45 #include "modules/indexeddb/IDBKeyRange.h"
47 #include "modules/speech/SpeechRecognitionError.h" 46 #include "modules/speech/SpeechRecognitionError.h"
48 #include "modules/speech/SpeechRecognitionResult.h" 47 #include "modules/speech/SpeechRecognitionResult.h"
49 #include "modules/speech/SpeechRecognitionResultList.h" 48 #include "modules/speech/SpeechRecognitionResultList.h"
50 #include "wtf/MathExtras.h" 49 #include "wtf/MathExtras.h"
51 50
52 #include "V8TextTrack.h" 51 #include "V8TextTrack.h"
53 #include "core/html/track/TrackBase.h" 52 #include "core/html/track/TrackBase.h"
54 53
55 #include "V8MediaStream.h" 54 #include "V8MediaStream.h"
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 if (!options->Has(key)) 592 if (!options->Has(key))
594 continue; 593 continue;
595 V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, ke y, false); 594 V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, ke y, false);
596 names.append(stringKey); 595 names.append(stringKey);
597 } 596 }
598 597
599 return true; 598 return true;
600 } 599 }
601 600
602 } // namespace WebCore 601 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestObjectPython.cpp ('k') | Source/bindings/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698