| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "bindings/v8/V8PerContextData.h" | 46 #include "bindings/v8/V8PerContextData.h" |
| 47 #include "bindings/v8/V8ScriptRunner.h" | 47 #include "bindings/v8/V8ScriptRunner.h" |
| 48 #include "bindings/v8/V8WindowShell.h" | 48 #include "bindings/v8/V8WindowShell.h" |
| 49 #include "bindings/v8/npruntime_impl.h" | 49 #include "bindings/v8/npruntime_impl.h" |
| 50 #include "bindings/v8/npruntime_priv.h" | 50 #include "bindings/v8/npruntime_priv.h" |
| 51 #include "core/dom/Document.h" | 51 #include "core/dom/Document.h" |
| 52 #include "core/dom/Node.h" | 52 #include "core/dom/Node.h" |
| 53 #include "core/dom/ScriptableDocumentParser.h" | 53 #include "core/dom/ScriptableDocumentParser.h" |
| 54 #include "core/events/Event.h" | 54 #include "core/events/Event.h" |
| 55 #include "core/events/EventListener.h" | 55 #include "core/events/EventListener.h" |
| 56 #include "core/events/ThreadLocalEventNames.h" | |
| 57 #include "core/frame/DOMWindow.h" | 56 #include "core/frame/DOMWindow.h" |
| 58 #include "core/frame/LocalFrame.h" | 57 #include "core/frame/LocalFrame.h" |
| 59 #include "core/frame/Settings.h" | 58 #include "core/frame/Settings.h" |
| 60 #include "core/frame/csp/ContentSecurityPolicy.h" | 59 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 61 #include "core/html/HTMLPlugInElement.h" | 60 #include "core/html/HTMLPlugInElement.h" |
| 62 #include "core/inspector/InspectorInstrumentation.h" | 61 #include "core/inspector/InspectorInstrumentation.h" |
| 63 #include "core/inspector/ScriptCallStack.h" | 62 #include "core/inspector/ScriptCallStack.h" |
| 64 #include "core/loader/DocumentLoader.h" | 63 #include "core/loader/DocumentLoader.h" |
| 65 #include "core/loader/FrameLoader.h" | 64 #include "core/loader/FrameLoader.h" |
| 66 #include "core/loader/FrameLoaderClient.h" | 65 #include "core/loader/FrameLoaderClient.h" |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 v8Results = evaluateHandleScope.Escape(resultArray); | 639 v8Results = evaluateHandleScope.Escape(resultArray); |
| 641 } | 640 } |
| 642 | 641 |
| 643 if (results && !v8Results.IsEmpty()) { | 642 if (results && !v8Results.IsEmpty()) { |
| 644 for (size_t i = 0; i < v8Results->Length(); ++i) | 643 for (size_t i = 0; i < v8Results->Length(); ++i) |
| 645 results->append(ScriptValue(v8Results->Get(i), m_isolate)); | 644 results->append(ScriptValue(v8Results->Get(i), m_isolate)); |
| 646 } | 645 } |
| 647 } | 646 } |
| 648 | 647 |
| 649 } // namespace WebCore | 648 } // namespace WebCore |
| OLD | NEW |