blob: 6acad7d775f3fb97241daecf14623299c5077bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2015 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.
#ifndef MEDIA_MIDI_MIDI_JNI_REGISTRAR_H_
#define MEDIA_MIDI_MIDI_JNI_REGISTRAR_H_
#include <jni.h>
#include "media/midi/midi_export.h"
namespace media {
namespace midi {
// Register all JNI bindings necessary for media/midi.
MIDI_EXPORT bool RegisterJni(JNIEnv* env);
} // namespace midi
} // namespace media
#endif // MEDIA_MIDI_MIDI_JNI_REGISTRAR_H_
|