2009-08-18 19:05:15 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set sw=4 ts=8 et tw=80 :
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
#ifndef dom_tabs_ContentThread_h
|
|
|
|
#define dom_tabs_ContentThread_h 1
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2010-05-13 23:44:53 +00:00
|
|
|
#include "mozilla/ipc/ProcessChild.h"
|
2010-02-01 03:19:21 +00:00
|
|
|
#include "mozilla/ipc/ScopedXREEmbed.h"
|
2010-07-19 18:33:33 +00:00
|
|
|
#include "ContentChild.h"
|
2009-06-30 20:39:22 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-08-12 16:18:08 +00:00
|
|
|
namespace dom {
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2009-08-12 16:18:08 +00:00
|
|
|
/**
|
2010-07-19 18:33:33 +00:00
|
|
|
* ContentProcess is a singleton on the content process which represents
|
2010-05-13 23:44:53 +00:00
|
|
|
* the main thread where tab instances live.
|
2009-08-12 16:18:08 +00:00
|
|
|
*/
|
2010-07-19 18:33:33 +00:00
|
|
|
class ContentProcess : public mozilla::ipc::ProcessChild
|
2009-08-12 16:18:08 +00:00
|
|
|
{
|
2010-05-13 23:44:53 +00:00
|
|
|
typedef mozilla::ipc::ProcessChild ProcessChild;
|
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
public:
|
2015-04-01 08:40:35 +00:00
|
|
|
explicit ContentProcess(ProcessId aParentPid)
|
|
|
|
: ProcessChild(aParentPid)
|
2010-05-13 23:44:53 +00:00
|
|
|
{ }
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
~ContentProcess()
|
2010-05-13 23:44:53 +00:00
|
|
|
{ }
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool Init() override;
|
|
|
|
virtual void CleanUp() override;
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2012-12-18 16:24:42 +00:00
|
|
|
void SetAppDir(const nsACString& aPath);
|
|
|
|
|
2010-05-13 23:44:53 +00:00
|
|
|
private:
|
2010-07-19 18:33:33 +00:00
|
|
|
ContentChild mContent;
|
2010-02-01 03:19:21 +00:00
|
|
|
mozilla::ipc::ScopedXREEmbed mXREEmbed;
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(ContentProcess);
|
2009-06-30 20:39:22 +00:00
|
|
|
};
|
|
|
|
|
2009-08-12 16:18:08 +00:00
|
|
|
} // namespace dom
|
2009-06-30 20:39:22 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
#endif // ifndef dom_tabs_ContentThread_h
|