Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
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_plugins_PluginStreamParent_h
7 #define mozilla_plugins_PluginStreamParent_h
9 #include "mozilla/plugins/PPluginStreamParent.h"
10 #include "mozilla/plugins/AStream.h"
12 namespace mozilla {
13 namespace plugins {
15 class PluginInstanceParent;
17 class PluginStreamParent : public PPluginStreamParent, public AStream
18 {
19 friend class PluginModuleParent;
20 friend class PluginInstanceParent;
22 public:
23 PluginStreamParent(PluginInstanceParent* npp, const nsCString& mimeType,
24 const nsCString& target, NPError* result);
25 virtual ~PluginStreamParent() { }
27 virtual bool IsBrowserStream() MOZ_OVERRIDE { return false; }
29 virtual bool AnswerNPN_Write(const Buffer& data, int32_t* written) MOZ_OVERRIDE;
31 virtual bool Answer__delete__(const NPError& reason, const bool& artificial) MOZ_OVERRIDE;
33 private:
34 void NPN_DestroyStream(NPReason reason);
36 PluginInstanceParent* mInstance;
37 NPStream* mStream;
38 bool mClosed;
39 };
41 } // namespace plugins
42 } // namespace mozilla
44 #endif