// Copyright 2013 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 CONTENT_CHILD_ANDROID_CHILD_JNI_REGISTRAR_H_ #define CONTENT_CHILD_ANDROID_CHILD_JNI_REGISTRAR_H_ #include #include "content/common/content_export.h" namespace content { namespace android { // Register all JNI bindings necessary for content child. CONTENT_EXPORT bool RegisterChildJni(JNIEnv* env); } // namespace android } // namespace content #endif // CONTENT_CHILD_ANDROID_CHILD_JNI_REGISTRAR_H_