blob: b3d3830ef7784c99923020cc2f6c9c61e10c6cf9 [file] [log] [blame]
// Copyright (c) 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 MOJO_SHELL_APP_CONTAINER_H_
#define MOJO_SHELL_APP_CONTAINER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "mojo/loader/job.h"
#include "mojo/public/system/core.h"
namespace base {
class FilePath;
class Thread;
}
namespace mojo {
namespace shell {
// A container class that runs an app on its own thread.
class AppContainer : public loader::Job::Delegate {
public:
AppContainer();
virtual ~AppContainer();
private:
// From loader::Job::Delegate
virtual void DidCompleteLoad(const GURL& app_url,
const base::FilePath& app_path) OVERRIDE;
void AppCompleted();
scoped_ptr<base::Thread> thread_;
// Following members are valid only on app thread.
Handle shell_handle_;
base::WeakPtrFactory<AppContainer> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(AppContainer);
};
} // namespace shell
} // namespace mojo
#endif // MOJO_SHELL_APP_CONTAINER_H_