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 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "core/frame/UseCounter.h" | 59 #include "core/frame/UseCounter.h" |
60 #include "core/frame/csp/ContentSecurityPolicy.h" | 60 #include "core/frame/csp/ContentSecurityPolicy.h" |
61 #include "core/html/HTMLPlugInElement.h" | 61 #include "core/html/HTMLPlugInElement.h" |
62 #include "core/inspector/ConsoleMessage.h" | 62 #include "core/inspector/ConsoleMessage.h" |
63 #include "core/inspector/InspectorInstrumentation.h" | 63 #include "core/inspector/InspectorInstrumentation.h" |
64 #include "core/inspector/InspectorTraceEvents.h" | 64 #include "core/inspector/InspectorTraceEvents.h" |
65 #include "core/inspector/ScriptCallStack.h" | 65 #include "core/inspector/ScriptCallStack.h" |
66 #include "core/loader/DocumentLoader.h" | 66 #include "core/loader/DocumentLoader.h" |
67 #include "core/loader/FrameLoader.h" | 67 #include "core/loader/FrameLoader.h" |
68 #include "core/loader/FrameLoaderClient.h" | 68 #include "core/loader/FrameLoaderClient.h" |
| 69 #include "core/loader/NavigationScheduler.h" |
69 #include "core/loader/ProgressTracker.h" | 70 #include "core/loader/ProgressTracker.h" |
70 #include "core/plugins/PluginView.h" | 71 #include "core/plugins/PluginView.h" |
71 #include "platform/NotImplemented.h" | 72 #include "platform/NotImplemented.h" |
72 #include "platform/TraceEvent.h" | 73 #include "platform/TraceEvent.h" |
73 #include "platform/UserGestureIndicator.h" | 74 #include "platform/UserGestureIndicator.h" |
74 #include "platform/Widget.h" | 75 #include "platform/Widget.h" |
75 #include "platform/weborigin/SecurityOrigin.h" | 76 #include "platform/weborigin/SecurityOrigin.h" |
76 #include "public/platform/Platform.h" | 77 #include "public/platform/Platform.h" |
77 #include "wtf/CurrentTime.h" | 78 #include "wtf/CurrentTime.h" |
78 #include "wtf/StdLibExtras.h" | 79 #include "wtf/StdLibExtras.h" |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 for (size_t i = 0; i < resultArray->Length(); ++i) { | 593 for (size_t i = 0; i < resultArray->Length(); ++i) { |
593 v8::Local<v8::Value> value; | 594 v8::Local<v8::Value> value; |
594 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) | 595 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) |
595 return; | 596 return; |
596 results->append(value); | 597 results->append(value); |
597 } | 598 } |
598 } | 599 } |
599 } | 600 } |
600 | 601 |
601 } // namespace blink | 602 } // namespace blink |
OLD | NEW |