blob: 064e6a280d67d486250c0e4a725f799b28b98a21 [file] [log] [blame]
// Copyright 2022 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 CHROME_BROWSER_FEEDBACK_ANDROID_FAMILY_INFO_FEEDBACK_SOURCE_H_
#define CHROME_BROWSER_FEEDBACK_ANDROID_FAMILY_INFO_FEEDBACK_SOURCE_H_
#include <map>
#include <memory>
#include "base/android/jni_weak_ref.h"
#include "base/android/scoped_java_ref.h"
#include "base/memory/raw_ptr.h"
#include "base/process/process_handle.h"
#include "chrome/browser/supervised_user/child_accounts/family_info_fetcher.h"
class Profile;
namespace network {
class SharedURLLoaderFactory;
} // namespace network
namespace chrome::android {
// Native class for Java counterpart. Retrieves family information
// asynchronously.
class FamilyInfoFeedbackSource : public FamilyInfoFetcher::Consumer {
public:
FamilyInfoFeedbackSource(const base::android::JavaParamRef<jobject>& obj,
Profile* profile);
FamilyInfoFeedbackSource(const FamilyInfoFeedbackSource&) = delete;
FamilyInfoFeedbackSource& operator=(const FamilyInfoFeedbackSource&) = delete;
~FamilyInfoFeedbackSource() override;
// Retrieves a list of family members for the primary account.
void GetFamilyMembers();
private:
friend class FamilyInfoFeedbackSourceTest;
// FamilyInfoFetcher::Consumer implementation.
void OnGetFamilyMembersSuccess(
const std::vector<FamilyInfoFetcher::FamilyMember>& members) override;
void OnFailure(FamilyInfoFetcher::ErrorCode error) override;
// Performs completion following call to GetFamilyMembers.
void OnGetFamilyMembersCompletion();
std::unique_ptr<FamilyInfoFetcher> family_fetcher_;
raw_ptr<signin::IdentityManager> identity_manager_;
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory_;
base::android::ScopedJavaGlobalRef<jobject> java_ref_;
base::WeakPtrFactory<FamilyInfoFeedbackSource> weak_factory_{this};
};
} // namespace chrome::android
#endif // CHROME_BROWSER_FEEDBACK_ANDROID_FAMILY_INFO_FEEDBACK_SOURCE_H_