| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "V8Event.h" | 35 #include "V8Event.h" |
| 36 #include "V8HTMLElement.h" | 36 #include "V8HTMLElement.h" |
| 37 #include "V8Window.h" | 37 #include "V8Window.h" |
| 38 #include "bindings/v8/BindingSecurity.h" | 38 #include "bindings/v8/BindingSecurity.h" |
| 39 #include "bindings/v8/NPV8Object.h" | 39 #include "bindings/v8/NPV8Object.h" |
| 40 #include "bindings/v8/ScriptCallStackFactory.h" | 40 #include "bindings/v8/ScriptCallStackFactory.h" |
| 41 #include "bindings/v8/ScriptSourceCode.h" | 41 #include "bindings/v8/ScriptSourceCode.h" |
| 42 #include "bindings/v8/ScriptValue.h" | 42 #include "bindings/v8/ScriptValue.h" |
| 43 #include "bindings/v8/V8Binding.h" | 43 #include "bindings/v8/V8Binding.h" |
| 44 #include "bindings/v8/V8GCController.h" | 44 #include "bindings/v8/V8GCController.h" |
| 45 #include "bindings/v8/V8HiddenPropertyName.h" | |
| 46 #include "bindings/v8/V8NPObject.h" | 45 #include "bindings/v8/V8NPObject.h" |
| 47 #include "bindings/v8/V8PerContextData.h" | 46 #include "bindings/v8/V8PerContextData.h" |
| 48 #include "bindings/v8/V8ScriptRunner.h" | 47 #include "bindings/v8/V8ScriptRunner.h" |
| 49 #include "bindings/v8/V8WindowShell.h" | 48 #include "bindings/v8/V8WindowShell.h" |
| 50 #include "bindings/v8/npruntime_impl.h" | 49 #include "bindings/v8/npruntime_impl.h" |
| 51 #include "bindings/v8/npruntime_priv.h" | 50 #include "bindings/v8/npruntime_priv.h" |
| 52 #include "core/dom/Document.h" | 51 #include "core/dom/Document.h" |
| 53 #include "core/dom/Node.h" | 52 #include "core/dom/Node.h" |
| 54 #include "core/dom/ScriptableDocumentParser.h" | 53 #include "core/dom/ScriptableDocumentParser.h" |
| 55 #include "core/events/Event.h" | 54 #include "core/events/Event.h" |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 v8Results = evaluateHandleScope.Escape(resultArray); | 682 v8Results = evaluateHandleScope.Escape(resultArray); |
| 684 } | 683 } |
| 685 | 684 |
| 686 if (results && !v8Results.IsEmpty()) { | 685 if (results && !v8Results.IsEmpty()) { |
| 687 for (size_t i = 0; i < v8Results->Length(); ++i) | 686 for (size_t i = 0; i < v8Results->Length(); ++i) |
| 688 results->append(ScriptValue(v8Results->Get(i), m_isolate)); | 687 results->append(ScriptValue(v8Results->Get(i), m_isolate)); |
| 689 } | 688 } |
| 690 } | 689 } |
| 691 | 690 |
| 692 } // namespace WebCore | 691 } // namespace WebCore |
| OLD | NEW |