error_screen_actor_delegate.h revision a1401311d1ab56c4ed0a474bd38c108f75cb0cd9
1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_
6#define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_
7
8namespace chromeos {
9
10class ErrorScreenActorDelegate {
11 public:
12  virtual ~ErrorScreenActorDelegate() {}
13  virtual void OnErrorShow() = 0;
14  virtual void OnErrorHide() = 0;
15};
16
17}  // namespace chromeos
18
19#endif  // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_
20