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.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
michael@0 | 2 | * vim: set ts=8 sts=4 et sw=4 tw=99: |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef jit_JitFrameIterator_inl_h |
michael@0 | 8 | #define jit_JitFrameIterator_inl_h |
michael@0 | 9 | |
michael@0 | 10 | #ifdef JS_ION |
michael@0 | 11 | |
michael@0 | 12 | #include "jit/JitFrameIterator.h" |
michael@0 | 13 | |
michael@0 | 14 | #include "jit/Bailouts.h" |
michael@0 | 15 | #include "jit/BaselineFrame.h" |
michael@0 | 16 | |
michael@0 | 17 | namespace js { |
michael@0 | 18 | namespace jit { |
michael@0 | 19 | |
michael@0 | 20 | template <AllowGC allowGC> |
michael@0 | 21 | inline |
michael@0 | 22 | InlineFrameIteratorMaybeGC<allowGC>::InlineFrameIteratorMaybeGC( |
michael@0 | 23 | JSContext *cx, const IonBailoutIterator *iter) |
michael@0 | 24 | : frame_(iter), |
michael@0 | 25 | framesRead_(0), |
michael@0 | 26 | frameCount_(UINT32_MAX), |
michael@0 | 27 | callee_(cx), |
michael@0 | 28 | script_(cx) |
michael@0 | 29 | { |
michael@0 | 30 | if (iter) { |
michael@0 | 31 | start_ = SnapshotIterator(*iter); |
michael@0 | 32 | findNextFrame(); |
michael@0 | 33 | } |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | inline BaselineFrame * |
michael@0 | 37 | JitFrameIterator::baselineFrame() const |
michael@0 | 38 | { |
michael@0 | 39 | JS_ASSERT(isBaselineJS()); |
michael@0 | 40 | return (BaselineFrame *)(fp() - BaselineFrame::FramePointerOffset - BaselineFrame::Size()); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | } // namespace jit |
michael@0 | 44 | } // namespace js |
michael@0 | 45 | |
michael@0 | 46 | #endif // JS_ION |
michael@0 | 47 | |
michael@0 | 48 | #endif /* jit_JitFrameIterator_inl_h */ |