#ifndef CHROME_BROWSER_APPS_PER_APP_SETTINGS_SERVICE_H_
#define CHROME_BROWSER_APPS_PER_APP_SETTINGS_SERVICE_H_
#include <map>
#include <string>
#include "chrome/browser/ui/host_desktop.h"
#include "components/keyed_service/core/keyed_service.h"
class PerAppSettingsService : public KeyedService {
 public:
  PerAppSettingsService();
  virtual ~PerAppSettingsService();
  
  void SetDesktopLastLaunchedFrom(
      const std::string& app_id, chrome::HostDesktopType host);
  chrome::HostDesktopType GetDesktopLastLaunchedFrom(
      const std::string& app_id) const;
  bool HasDesktopLastLaunchedFrom(const std::string& app_id) const;
 private:
  typedef std::map<std::string, chrome::HostDesktopType> DesktopMap;
  DesktopMap default_desktops_;
  DISALLOW_COPY_AND_ASSIGN(PerAppSettingsService);
};
#endif