ipc/ipdl/test/cxx/IPDLUnitTestSubprocess.h

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 /* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef mozilla__ipdltest_IPDLUnitTestTestSubprocess_h
     7 #define mozilla__ipdltest_IPDLUnitTestTestSubprocess_h 1
    10 #include "mozilla/ipc/GeckoChildProcessHost.h"
    12 namespace mozilla {
    13 namespace _ipdltest {
    14 //-----------------------------------------------------------------------------
    16 class IPDLUnitTestSubprocess : public mozilla::ipc::GeckoChildProcessHost
    17 {
    18 public:
    19   IPDLUnitTestSubprocess();
    20   ~IPDLUnitTestSubprocess();
    22   /**
    23    * Asynchronously launch the plugin process.
    24    */
    25   // Could override parent Launch, but don't need to here
    26   //bool Launch();
    28 private:
    29   DISALLOW_EVIL_CONSTRUCTORS(IPDLUnitTestSubprocess);
    30 };
    33 } // namespace _ipdltest
    34 } // namespace mozilla
    37 #endif // ifndef mozilla__ipdltest_IPDLUnitTestTestSubprocess_h

mercurial