dom/plugins/ipc/StreamNotifyParent.h

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:1db31e9b73d7
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/. */
6
7 #ifndef mozilla_plugins_StreamNotifyParent_h
8 #define mozilla_plugins_StreamNotifyParent_h
9
10 #include "mozilla/plugins/PStreamNotifyParent.h"
11
12 namespace mozilla {
13 namespace plugins {
14
15 class StreamNotifyParent : public PStreamNotifyParent
16 {
17 friend class PluginInstanceParent;
18
19 StreamNotifyParent()
20 : mDestructionFlag(nullptr)
21 { }
22 ~StreamNotifyParent() {
23 if (mDestructionFlag)
24 *mDestructionFlag = true;
25 }
26
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 }
36
37 private:
38 bool RecvRedirectNotifyResponse(const bool& allow) MOZ_OVERRIDE;
39
40 bool* mDestructionFlag;
41 };
42
43 } // namespace plugins
44 } // namespace mozilla
45
46 #endif

mercurial