blob: 83e8775c3ace525e0c606c4185fc04451f5ec6f3 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/lens/lens_keyed_service.h"
LensKeyedService::LensKeyedService() = default;
LensKeyedService::~LensKeyedService() = default;
void LensKeyedService::IncrementActionChipShownCount() {
action_chip_shown_count_ += 1;
}
int LensKeyedService::GetActionChipShownCount() {
return action_chip_shown_count_;
}
void LensKeyedService::SetActionChipShownCount(int value) {
action_chip_shown_count_ = value;
}