dom/plugins/ipc/StreamNotifyParent.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
     2 /* vim: set sw=2 ts=2 et : */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this
     5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 #ifndef mozilla_plugins_StreamNotifyParent_h
     8 #define mozilla_plugins_StreamNotifyParent_h
    10 #include "mozilla/plugins/PStreamNotifyParent.h"
    12 namespace mozilla {
    13 namespace plugins {
    15 class StreamNotifyParent : public PStreamNotifyParent
    16 {
    17   friend class PluginInstanceParent;
    19   StreamNotifyParent()
    20     : mDestructionFlag(nullptr)
    21   { }
    22   ~StreamNotifyParent() {
    23     if (mDestructionFlag)
    24       *mDestructionFlag = true;
    25   }
    27 public:
    28   // If we are destroyed within the call to NPN_GetURLNotify, notify the caller
    29   // so that we aren't destroyed again. see bug 536437.
    30   void SetDestructionFlag(bool* flag) {
    31     mDestructionFlag = flag;
    32   }
    33   void ClearDestructionFlag() {
    34     mDestructionFlag = nullptr;
    35   }
    37 private:
    38   bool RecvRedirectNotifyResponse(const bool& allow) MOZ_OVERRIDE;
    40   bool* mDestructionFlag;
    41 };
    43 } // namespace plugins
    44 } // namespace mozilla
    46 #endif

mercurial