#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_
#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_
#include "base/memory/scoped_ptr.h"
#include "components/keyed_service/core/keyed_service.h"
class Profile;
namespace file_manager {
class EventRouter;
class FileBrowserPrivateAPI : public KeyedService {
public:
explicit FileBrowserPrivateAPI(Profile* profile);
virtual ~FileBrowserPrivateAPI();
virtual void Shutdown() OVERRIDE;
static FileBrowserPrivateAPI* Get(Profile* profile);
EventRouter* event_router() { return event_router_.get(); }
private:
scoped_ptr<EventRouter> event_router_;
};
}
#endif