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

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

Issue 331373002: Split bindings/v8/custom into core and modules. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 6 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
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 17 matching lines...) Expand all
28 28
29 #include "bindings/core/v8/V8DOMError.h" 29 #include "bindings/core/v8/V8DOMError.h"
30 #include "bindings/core/v8/V8Element.h" 30 #include "bindings/core/v8/V8Element.h"
31 #include "bindings/core/v8/V8EventTarget.h" 31 #include "bindings/core/v8/V8EventTarget.h"
32 #include "bindings/core/v8/V8MediaKeyError.h" 32 #include "bindings/core/v8/V8MediaKeyError.h"
33 #include "bindings/core/v8/V8MessagePort.h" 33 #include "bindings/core/v8/V8MessagePort.h"
34 #include "bindings/core/v8/V8Storage.h" 34 #include "bindings/core/v8/V8Storage.h"
35 #include "bindings/core/v8/V8TextTrack.h" 35 #include "bindings/core/v8/V8TextTrack.h"
36 #include "bindings/core/v8/V8VoidCallback.h" 36 #include "bindings/core/v8/V8VoidCallback.h"
37 #include "bindings/core/v8/V8Window.h" 37 #include "bindings/core/v8/V8Window.h"
38 #include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h"
39 #include "bindings/core/v8/custom/V8Uint8ArrayCustom.h"
38 #include "bindings/modules/v8/V8Gamepad.h" 40 #include "bindings/modules/v8/V8Gamepad.h"
39 #include "bindings/modules/v8/V8HeaderMap.h" 41 #include "bindings/modules/v8/V8HeaderMap.h"
40 #include "bindings/modules/v8/V8IDBKeyRange.h" 42 #include "bindings/modules/v8/V8IDBKeyRange.h"
41 #include "bindings/modules/v8/V8MIDIPort.h" 43 #include "bindings/modules/v8/V8MIDIPort.h"
42 #include "bindings/modules/v8/V8MediaStream.h" 44 #include "bindings/modules/v8/V8MediaStream.h"
43 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" 45 #include "bindings/modules/v8/V8SpeechRecognitionResult.h"
44 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" 46 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h"
45 #include "bindings/v8/ArrayValue.h" 47 #include "bindings/v8/ArrayValue.h"
46 #include "bindings/v8/ExceptionMessages.h" 48 #include "bindings/v8/ExceptionMessages.h"
47 #include "bindings/v8/ExceptionState.h" 49 #include "bindings/v8/ExceptionState.h"
48 #include "bindings/v8/V8Binding.h" 50 #include "bindings/v8/V8Binding.h"
49 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h"
50 #include "bindings/v8/custom/V8Uint8ArrayCustom.h"
51 #include "core/html/track/TrackBase.h" 51 #include "core/html/track/TrackBase.h"
52 #include "modules/gamepad/Gamepad.h" 52 #include "modules/gamepad/Gamepad.h"
53 #include "modules/indexeddb/IDBKeyRange.h" 53 #include "modules/indexeddb/IDBKeyRange.h"
54 #include "modules/mediastream/MediaStream.h" 54 #include "modules/mediastream/MediaStream.h"
55 #include "modules/speech/SpeechRecognitionResult.h" 55 #include "modules/speech/SpeechRecognitionResult.h"
56 #include "modules/speech/SpeechRecognitionResultList.h" 56 #include "modules/speech/SpeechRecognitionResultList.h"
57 #include "wtf/MathExtras.h" 57 #include "wtf/MathExtras.h"
58 58
59 namespace WebCore { 59 namespace WebCore {
60 60
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 746
747 return *this; 747 return *this;
748 } 748 }
749 749
750 void Dictionary::ConversionContext::throwTypeError(const String& detail) 750 void Dictionary::ConversionContext::throwTypeError(const String& detail)
751 { 751 {
752 exceptionState().throwTypeError(detail); 752 exceptionState().throwTypeError(detail);
753 } 753 }
754 754
755 } // namespace WebCore 755 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | Source/bindings/v8/IDBBindingUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698