Home | History | Annotate | Download | only in app_mode
      1 // Copyright 2013 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_APP_MODE_KIOSK_APP_MANAGER_OBSERVER_H_
      6 #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_MANAGER_OBSERVER_H_
      7 
      8 #include <string>
      9 
     10 namespace chromeos {
     11 
     12 class KioskAppManagerObserver {
     13  public:
     14   // Invoked when the app data is changed or loading state is changed.
     15   virtual void OnKioskAppDataChanged(const std::string& app_id) {}
     16 
     17   // Invoked when failed to load web store data of an app.
     18   virtual void OnKioskAppDataLoadFailure(const std::string& app_id) {}
     19 
     20   // Invoked when the Kiosk Apps configuration changes.
     21   virtual void OnKioskAppsSettingsChanged() {}
     22 
     23  protected:
     24   virtual ~KioskAppManagerObserver() {}
     25 };
     26 
     27 }  // namespace chromeos
     28 
     29 #endif  // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_MANAGER_OBSERVER_H_
     30