OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 29 matching lines...) Expand all Loading... |
40 #include "bindings/core/v8/V8Document.h" | 40 #include "bindings/core/v8/V8Document.h" |
41 #include "bindings/core/v8/V8FormData.h" | 41 #include "bindings/core/v8/V8FormData.h" |
42 #include "bindings/core/v8/V8HTMLDocument.h" | 42 #include "bindings/core/v8/V8HTMLDocument.h" |
43 #include "bindings/core/v8/V8ReadableStream.h" | 43 #include "bindings/core/v8/V8ReadableStream.h" |
44 #include "bindings/core/v8/V8Stream.h" | 44 #include "bindings/core/v8/V8Stream.h" |
45 #include "core/dom/Document.h" | 45 #include "core/dom/Document.h" |
46 #include "core/inspector/InspectorInstrumentation.h" | 46 #include "core/inspector/InspectorInstrumentation.h" |
47 #include "core/streams/ReadableStream.h" | 47 #include "core/streams/ReadableStream.h" |
48 #include "core/streams/Stream.h" | 48 #include "core/streams/Stream.h" |
49 #include "core/workers/WorkerGlobalScope.h" | 49 #include "core/workers/WorkerGlobalScope.h" |
50 #include "core/xml/XMLHttpRequest.h" | 50 #include "core/xmlhttprequest/XMLHttpRequest.h" |
51 #include <v8.h> | 51 #include <v8.h> |
52 | 52 |
53 namespace blink { | 53 namespace blink { |
54 | 54 |
55 void V8XMLHttpRequest::constructorCustom(const v8::FunctionCallbackInfo<v8::Valu
e>& info) | 55 void V8XMLHttpRequest::constructorCustom(const v8::FunctionCallbackInfo<v8::Valu
e>& info) |
56 { | 56 { |
57 ExecutionContext* context = currentExecutionContext(info.GetIsolate()); | 57 ExecutionContext* context = currentExecutionContext(info.GetIsolate()); |
58 | 58 |
59 RefPtr<SecurityOrigin> securityOrigin; | 59 RefPtr<SecurityOrigin> securityOrigin; |
60 if (context->isDocument()) { | 60 if (context->isDocument()) { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 } else { | 247 } else { |
248 TOSTRING_VOID(V8StringResource<TreatNullAsNullString>, argString, ar
g); | 248 TOSTRING_VOID(V8StringResource<TreatNullAsNullString>, argString, ar
g); |
249 xmlHttpRequest->send(argString, exceptionState); | 249 xmlHttpRequest->send(argString, exceptionState); |
250 } | 250 } |
251 } | 251 } |
252 | 252 |
253 exceptionState.throwIfNeeded(); | 253 exceptionState.throwIfNeeded(); |
254 } | 254 } |
255 | 255 |
256 } // namespace blink | 256 } // namespace blink |
OLD | NEW |