| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 #include "core/inspector/ScriptCallStack.h" | 60 #include "core/inspector/ScriptCallStack.h" |
| 61 #include "core/loader/DocumentLoader.h" | 61 #include "core/loader/DocumentLoader.h" |
| 62 #include "core/loader/FrameLoader.h" | 62 #include "core/loader/FrameLoader.h" |
| 63 #include "core/loader/FrameLoaderClient.h" | 63 #include "core/loader/FrameLoaderClient.h" |
| 64 #include "core/page/ContentSecurityPolicy.h" | 64 #include "core/page/ContentSecurityPolicy.h" |
| 65 #include "core/frame/DOMWindow.h" | 65 #include "core/frame/DOMWindow.h" |
| 66 #include "core/frame/Frame.h" | 66 #include "core/frame/Frame.h" |
| 67 #include "core/page/Page.h" | 67 #include "core/page/Page.h" |
| 68 #include "core/page/Settings.h" | 68 #include "core/page/Settings.h" |
| 69 #include "core/platform/HistogramSupport.h" | 69 #include "core/platform/HistogramSupport.h" |
| 70 #include "core/platform/Widget.h" | |
| 71 #include "core/plugins/PluginView.h" | 70 #include "core/plugins/PluginView.h" |
| 72 #include "platform/NotImplemented.h" | 71 #include "platform/NotImplemented.h" |
| 73 #include "platform/TraceEvent.h" | 72 #include "platform/TraceEvent.h" |
| 74 #include "platform/UserGestureIndicator.h" | 73 #include "platform/UserGestureIndicator.h" |
| 75 #include "weborigin/SecurityOrigin.h" | 74 #include "weborigin/SecurityOrigin.h" |
| 76 #include "wtf/CurrentTime.h" | 75 #include "wtf/CurrentTime.h" |
| 77 #include "wtf/StdLibExtras.h" | 76 #include "wtf/StdLibExtras.h" |
| 78 #include "wtf/StringExtras.h" | 77 #include "wtf/StringExtras.h" |
| 79 #include "wtf/text/CString.h" | 78 #include "wtf/text/CString.h" |
| 80 #include "wtf/text/StringBuilder.h" | 79 #include "wtf/text/StringBuilder.h" |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 v8Results = evaluateHandleScope.Close(resultArray); | 698 v8Results = evaluateHandleScope.Close(resultArray); |
| 700 } | 699 } |
| 701 | 700 |
| 702 if (results && !v8Results.IsEmpty()) { | 701 if (results && !v8Results.IsEmpty()) { |
| 703 for (size_t i = 0; i < v8Results->Length(); ++i) | 702 for (size_t i = 0; i < v8Results->Length(); ++i) |
| 704 results->append(ScriptValue(v8Results->Get(i), m_isolate)); | 703 results->append(ScriptValue(v8Results->Get(i), m_isolate)); |
| 705 } | 704 } |
| 706 } | 705 } |
| 707 | 706 |
| 708 } // namespace WebCore | 707 } // namespace WebCore |
| OLD | NEW |