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

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

Issue 655543004: bindings: removed unused includes from Dictionary.cpp. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | no next file » | 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 23 matching lines...) Expand all
34 #include "bindings/core/v8/V8DOMError.h" 34 #include "bindings/core/v8/V8DOMError.h"
35 #include "bindings/core/v8/V8Element.h" 35 #include "bindings/core/v8/V8Element.h"
36 #include "bindings/core/v8/V8EventTarget.h" 36 #include "bindings/core/v8/V8EventTarget.h"
37 #include "bindings/core/v8/V8MediaKeyError.h" 37 #include "bindings/core/v8/V8MediaKeyError.h"
38 #include "bindings/core/v8/V8MessagePort.h" 38 #include "bindings/core/v8/V8MessagePort.h"
39 #include "bindings/core/v8/V8Path2D.h" 39 #include "bindings/core/v8/V8Path2D.h"
40 #include "bindings/core/v8/V8Storage.h" 40 #include "bindings/core/v8/V8Storage.h"
41 #include "bindings/core/v8/V8TextTrack.h" 41 #include "bindings/core/v8/V8TextTrack.h"
42 #include "bindings/core/v8/V8VoidCallback.h" 42 #include "bindings/core/v8/V8VoidCallback.h"
43 #include "bindings/core/v8/V8Window.h" 43 #include "bindings/core/v8/V8Window.h"
44 #include "bindings/modules/v8/V8Gamepad.h"
45 #include "bindings/modules/v8/V8Headers.h"
46 #include "bindings/modules/v8/V8IDBKeyRange.h"
47 #include "bindings/modules/v8/V8MIDIPort.h"
48 #include "bindings/modules/v8/V8MediaStream.h"
49 #include "bindings/modules/v8/V8SpeechRecognitionResult.h"
50 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h"
51 #include "core/html/track/TrackBase.h" 44 #include "core/html/track/TrackBase.h"
52 #include "modules/gamepad/Gamepad.h"
53 #include "modules/indexeddb/IDBKeyRange.h"
54 #include "modules/mediastream/MediaStream.h"
55 #include "modules/speech/SpeechRecognitionResult.h"
56 #include "modules/speech/SpeechRecognitionResultList.h"
57 #include "wtf/MathExtras.h" 45 #include "wtf/MathExtras.h"
58 46
59 namespace blink { 47 namespace blink {
60 48
61 Dictionary::Dictionary() 49 Dictionary::Dictionary()
62 : m_isolate(0) 50 : m_isolate(0)
63 { 51 {
64 } 52 }
65 53
66 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolat e) 54 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolat e)
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 282
295 return *this; 283 return *this;
296 } 284 }
297 285
298 void Dictionary::ConversionContext::throwTypeError(const String& detail) 286 void Dictionary::ConversionContext::throwTypeError(const String& detail)
299 { 287 {
300 exceptionState().throwTypeError(detail); 288 exceptionState().throwTypeError(detail);
301 } 289 }
302 290
303 } // namespace blink 291 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698