blob: df3ef4e6e4837519b1669e177ca87178a5a98e0b [file] [log] [blame]
// Copyright 2018 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 ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_TEXT_ELEMENT_VIEW_H_
#define ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_TEXT_ELEMENT_VIEW_H_
#include "base/component_export.h"
#include "base/macros.h"
#include "ui/views/controls/label.h"
namespace ash {
class AssistantTextElement;
// AssistantTextElementView is the visual representation of an
// AssistantTextElement. It is a child view of UiElementContainerView.
class COMPONENT_EXPORT(ASSISTANT_UI) AssistantTextElementView
: public views::Label {
public:
explicit AssistantTextElementView(const AssistantTextElement* text_element);
~AssistantTextElementView() override;
// views::Label:
const char* GetClassName() const override;
private:
DISALLOW_COPY_AND_ASSIGN(AssistantTextElementView);
};
} // namespace ash
#endif // ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_TEXT_ELEMENT_VIEW_H_