mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-01 01:36:09 +03:00
20 lines
557 B
Plaintext
20 lines
557 B
Plaintext
// 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
|
|
};
|