| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "core/html/parser/HTMLScriptRunner.h" | 44 #include "core/html/parser/HTMLScriptRunner.h" |
| 45 #include "core/html/parser/HTMLTreeBuilder.h" | 45 #include "core/html/parser/HTMLTreeBuilder.h" |
| 46 #include "core/inspector/InspectorInstrumentation.h" | 46 #include "core/inspector/InspectorInstrumentation.h" |
| 47 #include "core/inspector/InspectorTraceEvents.h" | 47 #include "core/inspector/InspectorTraceEvents.h" |
| 48 #include "core/loader/DocumentLoader.h" | 48 #include "core/loader/DocumentLoader.h" |
| 49 #include "core/loader/LinkLoader.h" | 49 #include "core/loader/LinkLoader.h" |
| 50 #include "core/loader/NavigationScheduler.h" | 50 #include "core/loader/NavigationScheduler.h" |
| 51 #include "platform/CrossThreadFunctional.h" | 51 #include "platform/CrossThreadFunctional.h" |
| 52 #include "platform/Histogram.h" | 52 #include "platform/Histogram.h" |
| 53 #include "platform/SharedBuffer.h" | 53 #include "platform/SharedBuffer.h" |
| 54 #include "platform/TraceEvent.h" | |
| 55 #include "platform/heap/Handle.h" | 54 #include "platform/heap/Handle.h" |
| 55 #include "platform/tracing/TraceEvent.h" |
| 56 #include "public/platform/Platform.h" | 56 #include "public/platform/Platform.h" |
| 57 #include "public/platform/WebFrameScheduler.h" | 57 #include "public/platform/WebFrameScheduler.h" |
| 58 #include "public/platform/WebLoadingBehaviorFlag.h" | 58 #include "public/platform/WebLoadingBehaviorFlag.h" |
| 59 #include "public/platform/WebScheduler.h" | 59 #include "public/platform/WebScheduler.h" |
| 60 #include "public/platform/WebThread.h" | 60 #include "public/platform/WebThread.h" |
| 61 #include "wtf/AutoReset.h" | 61 #include "wtf/AutoReset.h" |
| 62 #include "wtf/PtrUtil.h" | 62 #include "wtf/PtrUtil.h" |
| 63 #include <memory> | 63 #include <memory> |
| 64 | 64 |
| 65 namespace blink { | 65 namespace blink { |
| (...skipping 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 (*WTF::bind(function, std::forward<Ps>(parameters)...))(); | 1212 (*WTF::bind(function, std::forward<Ps>(parameters)...))(); |
| 1213 return; | 1213 return; |
| 1214 case Asynchronous: | 1214 case Asynchronous: |
| 1215 m_loadingTaskRunner->postTask(BLINK_FROM_HERE, WTF::bind(function, std::
forward<Ps>(parameters)...)); | 1215 m_loadingTaskRunner->postTask(BLINK_FROM_HERE, WTF::bind(function, std::
forward<Ps>(parameters)...)); |
| 1216 return; | 1216 return; |
| 1217 } | 1217 } |
| 1218 NOTREACHED(); | 1218 NOTREACHED(); |
| 1219 } | 1219 } |
| 1220 | 1220 |
| 1221 } // namespace blink | 1221 } // namespace blink |
| OLD | NEW |