// Copyright 2022 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/views/web_apps/web_app_views_utils.h" #include "chrome/browser/ui/views/chrome_typography.h" #include "components/url_formatter/elide_url.h" #include "url/gurl.h" namespace web_app { std::unique_ptr<views::Label> CreateNameLabel(const std::u16string& name) { … } std::unique_ptr<views::Label> CreateOriginLabelFromStartUrl( const GURL& start_url, bool is_primary_text) { … } } // namespace web_app