chromium/chrome/browser/history_embeddings/chrome_history_embeddings_service.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_HISTORY_EMBEDDINGS_CHROME_HISTORY_EMBEDDINGS_SERVICE_H_
#define CHROME_BROWSER_HISTORY_EMBEDDINGS_CHROME_HISTORY_EMBEDDINGS_SERVICE_H_

#include "base/no_destructor.h"
#include "chrome/browser/optimization_guide/optimization_guide_keyed_service.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/history_embeddings/history_embeddings_service.h"
#include "content/public/browser/browser_context.h"

namespace history_embeddings {

// Specialization of HistoryEmbeddingsService with implementation details
// that only apply in Chrome, for example model quality logging.
class ChromeHistoryEmbeddingsService : public HistoryEmbeddingsService {};

}  // namespace history_embeddings

#endif  // CHROME_BROWSER_HISTORY_EMBEDDINGS_CHROME_HISTORY_EMBEDDINGS_SERVICE_H_