| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "sky/engine/core/events/Event.h" | 51 #include "sky/engine/core/events/Event.h" |
| 52 #include "sky/engine/core/events/EventListener.h" | 52 #include "sky/engine/core/events/EventListener.h" |
| 53 #include "sky/engine/core/frame/LocalDOMWindow.h" | 53 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 54 #include "sky/engine/core/frame/LocalFrame.h" | 54 #include "sky/engine/core/frame/LocalFrame.h" |
| 55 #include "sky/engine/core/frame/Settings.h" | 55 #include "sky/engine/core/frame/Settings.h" |
| 56 #include "sky/engine/core/frame/UseCounter.h" | 56 #include "sky/engine/core/frame/UseCounter.h" |
| 57 #include "sky/engine/core/html/imports/HTMLImportChild.h" | 57 #include "sky/engine/core/html/imports/HTMLImportChild.h" |
| 58 #include "sky/engine/core/html/imports/HTMLImportLoader.h" | 58 #include "sky/engine/core/html/imports/HTMLImportLoader.h" |
| 59 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" | 59 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" |
| 60 #include "sky/engine/core/inspector/InspectorTraceEvents.h" | 60 #include "sky/engine/core/inspector/InspectorTraceEvents.h" |
| 61 #include "sky/engine/core/inspector/ScriptCallStack.h" | |
| 62 #include "sky/engine/core/loader/FrameLoaderClient.h" | 61 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 63 #include "sky/engine/platform/NotImplemented.h" | 62 #include "sky/engine/platform/NotImplemented.h" |
| 64 #include "sky/engine/platform/TraceEvent.h" | 63 #include "sky/engine/platform/TraceEvent.h" |
| 65 #include "sky/engine/platform/UserGestureIndicator.h" | 64 #include "sky/engine/platform/UserGestureIndicator.h" |
| 66 #include "sky/engine/platform/Widget.h" | 65 #include "sky/engine/platform/Widget.h" |
| 67 #include "sky/engine/public/platform/Platform.h" | 66 #include "sky/engine/public/platform/Platform.h" |
| 67 #include "sky/engine/core/inspector/ScriptCallStack.h" |
| 68 #include "sky/engine/wtf/CurrentTime.h" | 68 #include "sky/engine/wtf/CurrentTime.h" |
| 69 #include "sky/engine/wtf/StdLibExtras.h" | 69 #include "sky/engine/wtf/StdLibExtras.h" |
| 70 #include "sky/engine/wtf/StringExtras.h" | 70 #include "sky/engine/wtf/StringExtras.h" |
| 71 #include "sky/engine/wtf/text/CString.h" | 71 #include "sky/engine/wtf/text/CString.h" |
| 72 #include "sky/engine/wtf/text/StringBuilder.h" | 72 #include "sky/engine/wtf/text/StringBuilder.h" |
| 73 #include "sky/engine/wtf/text/TextPosition.h" | 73 #include "sky/engine/wtf/text/TextPosition.h" |
| 74 | 74 |
| 75 namespace blink { | 75 namespace blink { |
| 76 | 76 |
| 77 bool ScriptController::canAccessFromCurrentOrigin(LocalFrame *frame) | 77 bool ScriptController::canAccessFromCurrentOrigin(LocalFrame *frame) |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 scriptModule.resolvedDependencies.append(actual); | 357 scriptModule.resolvedDependencies.append(actual); |
| 358 } | 358 } |
| 359 } | 359 } |
| 360 } | 360 } |
| 361 } | 361 } |
| 362 | 362 |
| 363 V8ScriptRunner::runModule(m_isolate, m_frame->document(), scriptModule); | 363 V8ScriptRunner::runModule(m_isolate, m_frame->document(), scriptModule); |
| 364 } | 364 } |
| 365 | 365 |
| 366 } // namespace blink | 366 } // namespace blink |
| OLD | NEW |