naiveproxy/components/arc/common/intent_common.mojom

20 lines
557 B
Plaintext
Raw Normal View History

2018-12-10 05:59:24 +03:00
// Copyright 2018 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 arc.mojom;
// Describes the type of action to invoke.
[Extensible]
enum ActionType {
VIEW, // Can handle only one URL.
SEND, // Can handle only one URL.
SEND_MULTIPLE, // Can handle multiple URLs.
};
// Describes an activity.
struct ActivityName {
string package_name;
string? activity_name; // may be null to indicate any activity within package
};