| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2011 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 27 matching lines...) Expand all Loading... |
| 38 #include "bindings/core/v8/SerializedScriptValue.h" | 38 #include "bindings/core/v8/SerializedScriptValue.h" |
| 39 #include "bindings/core/v8/SerializedScriptValueFactory.h" | 39 #include "bindings/core/v8/SerializedScriptValueFactory.h" |
| 40 #include "bindings/core/v8/Transferables.h" | 40 #include "bindings/core/v8/Transferables.h" |
| 41 #include "bindings/core/v8/V8Binding.h" | 41 #include "bindings/core/v8/V8Binding.h" |
| 42 #include "bindings/core/v8/V8EventListener.h" | 42 #include "bindings/core/v8/V8EventListener.h" |
| 43 #include "bindings/core/v8/V8EventListenerList.h" | 43 #include "bindings/core/v8/V8EventListenerList.h" |
| 44 #include "bindings/core/v8/V8HTMLCollection.h" | 44 #include "bindings/core/v8/V8HTMLCollection.h" |
| 45 #include "bindings/core/v8/V8HiddenValue.h" | 45 #include "bindings/core/v8/V8HiddenValue.h" |
| 46 #include "bindings/core/v8/V8Node.h" | 46 #include "bindings/core/v8/V8Node.h" |
| 47 #include "core/dom/DOMArrayBuffer.h" | 47 #include "core/dom/DOMArrayBuffer.h" |
| 48 #include "core/dom/ExceptionCode.h" | |
| 49 #include "core/dom/MessagePort.h" | 48 #include "core/dom/MessagePort.h" |
| 50 #include "core/frame/FrameView.h" | 49 #include "core/frame/FrameView.h" |
| 51 #include "core/frame/ImageBitmap.h" | 50 #include "core/frame/ImageBitmap.h" |
| 52 #include "core/frame/LocalDOMWindow.h" | 51 #include "core/frame/LocalDOMWindow.h" |
| 53 #include "core/frame/LocalFrame.h" | 52 #include "core/frame/LocalFrame.h" |
| 54 #include "core/frame/Settings.h" | 53 #include "core/frame/Settings.h" |
| 55 #include "core/frame/UseCounter.h" | 54 #include "core/frame/UseCounter.h" |
| 56 #include "core/frame/csp/ContentSecurityPolicy.h" | 55 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 57 #include "core/html/HTMLCollection.h" | 56 #include "core/html/HTMLCollection.h" |
| 58 #include "core/html/HTMLDocument.h" | 57 #include "core/html/HTMLDocument.h" |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 if (items->hasExactlyOneItem()) { | 337 if (items->hasExactlyOneItem()) { |
| 339 v8SetReturnValueFast(info, items->item(0), window); | 338 v8SetReturnValueFast(info, items->item(0), window); |
| 340 return; | 339 return; |
| 341 } | 340 } |
| 342 v8SetReturnValueFast(info, items, window); | 341 v8SetReturnValueFast(info, items, window); |
| 343 return; | 342 return; |
| 344 } | 343 } |
| 345 } | 344 } |
| 346 | 345 |
| 347 } // namespace blink | 346 } // namespace blink |
| OLD | NEW |