2009-08-18 23:05:15 +04: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 15:12:37 +04: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-07-01 00:39:22 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
#ifndef dom_tabs_ContentThread_h
|
|
|
|
#define dom_tabs_ContentThread_h 1
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
#include "mozilla/ipc/ProcessChild.h"
|
2010-02-01 06:19:21 +03:00
|
|
|
#include "mozilla/ipc/ScopedXREEmbed.h"
|
2010-07-19 22:33:33 +04:00
|
|
|
#include "ContentChild.h"
|
2009-07-01 00:39:22 +04:00
|
|
|
|
|
|
|
#undef _MOZ_LOG
|
2010-07-19 22:33:33 +04:00
|
|
|
#define _MOZ_LOG(s) printf("[ContentProcess] %s", s)
|
2009-07-01 00:39:22 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
/**
|
2010-07-19 22:33:33 +04:00
|
|
|
* ContentProcess is a singleton on the content process which represents
|
2010-05-14 03:44:53 +04:00
|
|
|
* the main thread where tab instances live.
|
2009-08-12 20:18:08 +04:00
|
|
|
*/
|
2010-07-19 22:33:33 +04:00
|
|
|
class ContentProcess : public mozilla::ipc::ProcessChild
|
2009-08-12 20:18:08 +04:00
|
|
|
{
|
2010-05-14 03:44:53 +04:00
|
|
|
typedef mozilla::ipc::ProcessChild ProcessChild;
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
public:
|
2010-07-19 22:33:33 +04:00
|
|
|
ContentProcess(ProcessHandle mParentHandle)
|
2010-05-14 03:44:53 +04:00
|
|
|
: ProcessChild(mParentHandle)
|
|
|
|
{ }
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
~ContentProcess()
|
2010-05-14 03:44:53 +04:00
|
|
|
{ }
|
|
|
|
|
2012-07-06 22:15:45 +04:00
|
|
|
virtual bool Init() MOZ_OVERRIDE;
|
|
|
|
virtual void CleanUp() MOZ_OVERRIDE;
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2012-12-18 20:24:42 +04:00
|
|
|
void SetAppDir(const nsACString& aPath);
|
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
private:
|
2010-07-19 22:33:33 +04:00
|
|
|
ContentChild mContent;
|
2010-02-01 06:19:21 +03:00
|
|
|
mozilla::ipc::ScopedXREEmbed mXREEmbed;
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(ContentProcess);
|
2009-07-01 00:39:22 +04:00
|
|
|
};
|
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
} // namespace dom
|
2009-07-01 00:39:22 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
#endif // ifndef dom_tabs_ContentThread_h
|