mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
23 lines
665 B
Plaintext
23 lines
665 B
Plaintext
|
// Copyright 2016 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 mash.mojom;
|
||
|
|
||
|
const uint32 kWindow = 1;
|
||
|
const uint32 kIncognitoWindow = 2;
|
||
|
|
||
|
enum LaunchMode {
|
||
|
DEFAULT,
|
||
|
REUSE,
|
||
|
MAKE_NEW
|
||
|
};
|
||
|
|
||
|
interface Launchable {
|
||
|
// Launches something. The implementor decides what constitutes a "thing." If
|
||
|
// an instance of the thing is already present, the implementor may decide to
|
||
|
// re-select that thing instead of making another, depending on the value of
|
||
|
// |how|. In many windowing cases, the thing is a window.
|
||
|
Launch(uint32 what, LaunchMode how);
|
||
|
};
|