naiveproxy/content/public/common/download_stream.mojom

28 lines
696 B
Plaintext
Raw Normal View History

2018-01-28 21:32:06 +03:00
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module content.mojom;
enum NetworkRequestStatus {
OK,
NETWORK_TIMEOUT,
NETWORK_DISCONNECTED,
NETWORK_SERVER_DOWN,
SERVER_NO_RANGE,
SERVER_CONTENT_LENGTH_MISMATCH,
SERVER_UNREACHABLE,
SERVER_CERT_PROBLEM,
USER_CANCELED,
NETWORK_FAILED,
};
// Used to pass the interruption status to the consumer of the data pipe.
interface DownloadStreamClient {
OnStreamCompleted(NetworkRequestStatus status);
};
struct DownloadStreamHandle {
handle<data_pipe_consumer> stream;
DownloadStreamClient& client_request;
};