Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: chrome/browser/chromeos/login/screens/arc_terms_of_service_screen_actor_observer.h

Issue 2700303002: cros: Unify oobe View/Actor naming to just View. (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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_ARC_TERMS_OF_SERVICE_SCREEN_ACTOR_ OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ARC_TERMS_OF_SERVICE_SCREEN_ACTOR_ OBSERVER_H_
7
8 #include "base/macros.h"
9
10 namespace chromeos {
11
12 class ArcTermsOfServiceScreenActor;
13
14 class ArcTermsOfServiceScreenActorObserver {
15 public:
16 virtual ~ArcTermsOfServiceScreenActorObserver() = default;
17
18 // Called when the user skips the PlayStore Terms of Service.
19 virtual void OnSkip() = 0;
20
21 // Called when the user accepts the PlayStore Terms of Service.
22 virtual void OnAccept() = 0;
23
24 // Called when actor is destroyed so there is no dead reference to it.
25 virtual void OnActorDestroyed(ArcTermsOfServiceScreenActor* actor) = 0;
26
27 protected:
28 ArcTermsOfServiceScreenActorObserver() = default;
29
30 private:
31 DISALLOW_COPY_AND_ASSIGN(ArcTermsOfServiceScreenActorObserver);
32 };
33
34 } // namespace chromeos
35
36 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ARC_TERMS_OF_SERVICE_SCREEN_ACT OR_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698