blob: 4acbc9d465cd2a3871c9f407bc21c3813ab6f121 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_CHROMEOS_PRIVACY_SECTION_H_
#define CHROME_BROWSER_UI_WEBUI_SETTINGS_CHROMEOS_PRIVACY_SECTION_H_
#include "chrome/browser/ui/webui/settings/chromeos/os_settings_section.h"
namespace content {
class WebUIDataSource;
} // namespace content
namespace chromeos {
namespace settings {
class SearchTagRegistry;
// Provides UI strings and search tags for Privacy settings. Note that some
// search tags are added only for official Google Chrome OS builds.
class PrivacySection : public OsSettingsSection {
public:
PrivacySection(Profile* profile, SearchTagRegistry* search_tag_registry);
~PrivacySection() override;
private:
// OsSettingsSection:
void AddLoadTimeData(content::WebUIDataSource* html_source) override;
int GetSectionNameMessageId() const override;
mojom::Section GetSection() const override;
mojom::SearchResultIcon GetSectionIcon() const override;
std::string GetSectionPath() const override;
void RegisterHierarchy(HierarchyGenerator* generator) const override;
};
} // namespace settings
} // namespace chromeos
#endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_CHROMEOS_PRIVACY_SECTION_H_