#include "third_party/blink/renderer/core/fileapi/url_file_api.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/fileapi/blob.h"
#include "third_party/blink/renderer/core/fileapi/public_url_manager.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/url/dom_url.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
String URLFileAPI::createObjectURL(ScriptState* script_state,
Blob* blob,
ExceptionState& exception_state) { … }
void URLFileAPI::revokeObjectURL(ScriptState* script_state,
const String& url_string) { … }
void URLFileAPI::revokeObjectURL(ExecutionContext* execution_context,
const String& url_string) { … }
}