blob: f0a5359757d12c29fdd8969eb79f333de38554fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_DATA_DELEGATE_H_
#define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_DATA_DELEGATE_H_
#include <string>
namespace base {
class FilePath;
}
namespace chromeos {
class KioskAppDataDelegate {
public:
// Invoked to get the root directory for storing cached icon files.
virtual void GetKioskAppIconCacheDir(base::FilePath* cache_dir) = 0;
// Invoked when kiosk app data or status has changed.
virtual void OnKioskAppDataChanged(const std::string& app_id) = 0;
// Invoked when failed to load web store data of an app.
virtual void OnKioskAppDataLoadFailure(const std::string& app_id) = 0;
protected:
virtual ~KioskAppDataDelegate() {}
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_DATA_DELEGATE_H_
|