Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ash / system / chromeos / session / last_window_closed_observer.h
blobbf89b801744b511ba4c38d15f772c908eeada9d4
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 ASH_SYSTEM_CHROMEOS_SESSION_LAST_WINDOW_CLOSED_OBSERVER_H_
6 #define ASH_SYSTEM_CHROMEOS_SESSION_LAST_WINDOW_CLOSED_OBSERVER_H_
8 namespace ash {
10 class LastWindowClosedObserver {
11 public:
12 virtual void OnLastWindowClosed() = 0;
14 protected:
15 virtual ~LastWindowClosedObserver() {}
18 } // namespace ash
20 #endif // ASH_SYSTEM_CHROMEOS_SESSION_LAST_WINDOW_CLOSED_OBSERVER_H_