Update broken references to image assets
[chromium-blink-merge.git] / chrome / browser / chromeos / login / screens / error_screen_actor_delegate.h
blobdf711c70fc7416aecadddd68e2cbe10581ff296d
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.
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_
8 namespace chromeos {
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;
19 } // namespace chromeos
21 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_ACTOR_DELEGATE_H_