| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/loader/FrameLoaderClient.h" | 61 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 62 #include "sky/engine/platform/NotImplemented.h" | 62 #include "sky/engine/platform/NotImplemented.h" |
| 63 #include "sky/engine/platform/TraceEvent.h" | 63 #include "sky/engine/platform/TraceEvent.h" |
| 64 #include "sky/engine/platform/UserGestureIndicator.h" | |
| 65 #include "sky/engine/platform/Widget.h" | 64 #include "sky/engine/platform/Widget.h" |
| 66 #include "sky/engine/public/platform/Platform.h" | 65 #include "sky/engine/public/platform/Platform.h" |
| 67 #include "sky/engine/core/inspector/ScriptCallStack.h" | 66 #include "sky/engine/core/inspector/ScriptCallStack.h" |
| 68 #include "sky/engine/wtf/CurrentTime.h" | 67 #include "sky/engine/wtf/CurrentTime.h" |
| 69 #include "sky/engine/wtf/StdLibExtras.h" | 68 #include "sky/engine/wtf/StdLibExtras.h" |
| 70 #include "sky/engine/wtf/StringExtras.h" | 69 #include "sky/engine/wtf/StringExtras.h" |
| 71 #include "sky/engine/wtf/text/CString.h" | 70 #include "sky/engine/wtf/text/CString.h" |
| 72 #include "sky/engine/wtf/text/StringBuilder.h" | 71 #include "sky/engine/wtf/text/StringBuilder.h" |
| 73 #include "sky/engine/wtf/text/TextPosition.h" | 72 #include "sky/engine/wtf/text/TextPosition.h" |
| 74 | 73 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 scriptModule.resolvedDependencies.append(actual); | 302 scriptModule.resolvedDependencies.append(actual); |
| 304 } | 303 } |
| 305 } | 304 } |
| 306 } | 305 } |
| 307 } | 306 } |
| 308 | 307 |
| 309 V8ScriptRunner::runModule(m_isolate, m_frame->document(), scriptModule); | 308 V8ScriptRunner::runModule(m_isolate, m_frame->document(), scriptModule); |
| 310 } | 309 } |
| 311 | 310 |
| 312 } // namespace blink | 311 } // namespace blink |
| OLD | NEW |