Fix emulator build error
[platform/framework/web/chromium-efl.git] / components / browsing_topics / annotator.cc
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/browsing_topics/annotator.h"
6
7 namespace browsing_topics {
8
9 Annotation::Annotation(const std::string& input) : input(input) {}
10 Annotation::Annotation(const Annotation& other) = default;
11 Annotation::~Annotation() = default;
12
13 }  // namespace browsing_topics