27 lines
1.0 KiB
C++
27 lines
1.0 KiB
C++
// Copyright (c) 2025 The Brave Authors. All rights reserved.
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#include "brave/browser/android/tab_features_android.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "brave/browser/ai_chat/ai_chat_utils.h"
|
|
#include "brave/browser/ai_chat/tab_data_web_contents_observer.h"
|
|
#include "chrome/browser/android/tab_android.h"
|
|
#include "chrome/browser/profiles/profile.h"
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
TabFeaturesAndroid::TabFeaturesAndroid(content::WebContents* web_contents,
|
|
Profile* profile)
|
|
: TabFeaturesAndroid_Chromium(web_contents, profile) {
|
|
if (ai_chat::IsAllowedForContext(profile)) {
|
|
tab_data_observer_ = std::make_unique<ai_chat::TabDataWebContentsObserver>(
|
|
TabAndroid::FromWebContents(web_contents)->GetAndroidId(),
|
|
web_contents);
|
|
}
|
|
}
|
|
|
|
TabFeaturesAndroid::~TabFeaturesAndroid() = default;
|