1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22

ash / system / virtual_keyboard / virtual_keyboard_observer.h [blame]

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_SYSTEM_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_
#define ASH_SYSTEM_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_

#include "ash/ash_export.h"

namespace ash {

class ASH_EXPORT VirtualKeyboardObserver {
 public:
  virtual ~VirtualKeyboardObserver() {}

  // Notifies when the keyboard is suppressed.
  virtual void OnKeyboardSuppressionChanged(bool suppressed) = 0;
};

}  // namespace ash

#endif  // ASH_SYSTEM_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_OBSERVER_H_