blob: 07e738bc57da855e4f8da654a5e1d14ed87c4d68 [file] [log] [blame]
// Copyright 2017 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_SPELLCHECKER_SPELL_CHECK_PANEL_HOST_IMPL_H_
#define CHROME_BROWSER_SPELLCHECKER_SPELL_CHECK_PANEL_HOST_IMPL_H_
#include "base/macros.h"
#include "components/spellcheck/common/spellcheck_panel.mojom.h"
#include "components/spellcheck/spellcheck_buildflags.h"
#if !BUILDFLAG(HAS_SPELLCHECK_PANEL)
#error "Spellcheck panel should be enabled."
#endif
class SpellCheckPanelHostImpl : public spellcheck::mojom::SpellCheckPanelHost {
public:
SpellCheckPanelHostImpl();
~SpellCheckPanelHostImpl() override;
static void Create(spellcheck::mojom::SpellCheckPanelHostRequest request);
private:
// spellcheck::mojom::SpellCheckPanelHost:
void ShowSpellingPanel(bool show) override;
void UpdateSpellingPanelWithMisspelledWord(
const base::string16& word) override;
DISALLOW_COPY_AND_ASSIGN(SpellCheckPanelHostImpl);
};
#endif // CHROME_BROWSER_SPELLCHECKER_SPELL_CHECK_PANEL_HOST_IMPL_H_