blob: 1739c4a9fe7c951865ccef8aefafaa0dd1b91b91 [file] [log] [blame]
// Copyright 2014 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_SYSTEM_CHROMEOS_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_
#define ASH_SYSTEM_CHROMEOS_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_
#include "ash/ash_export.h"
class ASH_EXPORT VirtualKeyboardObserver {
public:
virtual ~VirtualKeyboardObserver() {}
// Notifies when the keyboard is suppressed.
virtual void OnKeyboardSuppressionChanged(bool suppressed) = 0;
};
#endif // ASH_SYSTEM_CHROMEOS_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_