chromium/third_party/blink/public/mojom/webshare/share_error.mojom

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

[JavaPackage="org.chromium.webshare.mojom"]
module blink.mojom;

enum ShareError {
  // Share successful.
  OK,
  // Something went wrong in the implementation.
  INTERNAL_ERROR,
  // Potentially dangerous files.
  PERMISSION_DENIED,
  // Share was canceled by user.
  CANCELED,
};