blob: 2c6c8378ce2019c11731b87bb3f4cf4366ba0dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/browsing_topics/annotator.h"
namespace browsing_topics {
Annotation::Annotation(const std::string& input) : input(input) {}
Annotation::Annotation(const Annotation& other) = default;
Annotation::~Annotation() = default;
} // namespace browsing_topics
|