Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / login / screens / error_screen_actor_delegate.h
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
8 namespace chromeos {
9
10 class ErrorScreenActorDelegate {
11  public:
12   virtual ~ErrorScreenActorDelegate() {}
13   virtual void OnErrorShow() = 0;
14   virtual void OnErrorHide() = 0;
15   virtual void OnLaunchOobeGuestSession() = 0;
16   virtual void OnActorDestroyed() = 0;
17 };
18
19 }  // namespace chromeos
20
21 #endif  // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_