blob: 74d365d02f006edc6d2827cb393fe1ca7434bb7e [file] [log] [blame]
// 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.
#ifndef COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_ANDROID_OFFLINE_ITEM_SHARE_INFO_BRIDGE_H_
#define COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_ANDROID_OFFLINE_ITEM_SHARE_INFO_BRIDGE_H_
#include <vector>
#include "base/android/jni_android.h"
#include "base/android/scoped_java_ref.h"
namespace offline_items_collection {
struct OfflineItemShareInfo;
namespace android {
// A helper class for creating Java OfflineItemShareInfo instances from the C++
// OfflineItemShareInfo counterpart.
class OfflineItemShareInfoBridge {
public:
// Creates a Java OfflineItemVisuals from |visuals|.
static base::android::ScopedJavaLocalRef<jobject> CreateOfflineItemShareInfo(
JNIEnv* env,
std::unique_ptr<OfflineItemShareInfo> share_info);
private:
OfflineItemShareInfoBridge();
};
} // namespace android
} // namespace offline_items_collection
#endif // COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_ANDROID_OFFLINE_ITEM_SHARE_INFO_BRIDGE_H_