| 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "core/dom/DOMArrayBufferView.h" | 35 #include "core/dom/DOMArrayBufferView.h" |
| 36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 37 #include "core/dom/SecurityContext.h" | 37 #include "core/dom/SecurityContext.h" |
| 38 #include "core/fileapi/File.h" | 38 #include "core/fileapi/File.h" |
| 39 #include "core/frame/FrameConsole.h" | 39 #include "core/frame/FrameConsole.h" |
| 40 #include "core/frame/LocalFrame.h" | 40 #include "core/frame/LocalFrame.h" |
| 41 #include "core/frame/LocalFrameClient.h" | 41 #include "core/frame/LocalFrameClient.h" |
| 42 #include "core/frame/csp/ContentSecurityPolicy.h" | 42 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 43 #include "core/html/FormData.h" | 43 #include "core/html/FormData.h" |
| 44 #include "core/inspector/ConsoleMessage.h" | 44 #include "core/inspector/ConsoleMessage.h" |
| 45 #include "core/inspector/InspectorInstrumentation.h" | |
| 46 #include "core/inspector/InspectorTraceEvents.h" | 45 #include "core/inspector/InspectorTraceEvents.h" |
| 47 #include "core/loader/FrameLoader.h" | 46 #include "core/loader/FrameLoader.h" |
| 48 #include "core/loader/MixedContentChecker.h" | 47 #include "core/loader/MixedContentChecker.h" |
| 49 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
| 49 #include "core/probe/CoreProbes.h" |
| 50 #include "platform/WebFrameScheduler.h" | 50 #include "platform/WebFrameScheduler.h" |
| 51 #include "platform/exported/WrappedResourceRequest.h" | 51 #include "platform/exported/WrappedResourceRequest.h" |
| 52 #include "platform/exported/WrappedResourceResponse.h" | 52 #include "platform/exported/WrappedResourceResponse.h" |
| 53 #include "platform/loader/fetch/CrossOriginAccessControl.h" | 53 #include "platform/loader/fetch/CrossOriginAccessControl.h" |
| 54 #include "platform/loader/fetch/FetchContext.h" | 54 #include "platform/loader/fetch/FetchContext.h" |
| 55 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" | 55 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 56 #include "platform/loader/fetch/FetchUtils.h" | 56 #include "platform/loader/fetch/FetchUtils.h" |
| 57 #include "platform/loader/fetch/ResourceError.h" | 57 #include "platform/loader/fetch/ResourceError.h" |
| 58 #include "platform/loader/fetch/ResourceFetcher.h" | 58 #include "platform/loader/fetch/ResourceFetcher.h" |
| 59 #include "platform/loader/fetch/ResourceRequest.h" | 59 #include "platform/loader/fetch/ResourceRequest.h" |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 bool PingLoader::sendBeacon(LocalFrame* frame, | 580 bool PingLoader::sendBeacon(LocalFrame* frame, |
| 581 int allowance, | 581 int allowance, |
| 582 const KURL& beaconURL, | 582 const KURL& beaconURL, |
| 583 Blob* data, | 583 Blob* data, |
| 584 size_t& beaconSize) { | 584 size_t& beaconSize) { |
| 585 BeaconBlob beacon(data); | 585 BeaconBlob beacon(data); |
| 586 return sendBeaconCommon(frame, allowance, beaconURL, beacon, beaconSize); | 586 return sendBeaconCommon(frame, allowance, beaconURL, beacon, beaconSize); |
| 587 } | 587 } |
| 588 | 588 |
| 589 } // namespace blink | 589 } // namespace blink |
| OLD | NEW |