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 | |
michael@0 | 2 | /* |
michael@0 | 3 | * Copyright 2011 Google Inc. |
michael@0 | 4 | * |
michael@0 | 5 | * Use of this source code is governed by a BSD-style license that can be |
michael@0 | 6 | * found in the LICENSE file. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | #import <QuartzCore/QuartzCore.h> |
michael@0 | 10 | #import <Cocoa/Cocoa.h> |
michael@0 | 11 | #import "SkWindow.h" |
michael@0 | 12 | class SkEvent; |
michael@0 | 13 | @class SkNSView; |
michael@0 | 14 | |
michael@0 | 15 | @protocol SkNSViewOptionsDelegate <NSObject> |
michael@0 | 16 | @optional |
michael@0 | 17 | // Called when the view needs to handle adding an SkOSMenu |
michael@0 | 18 | - (void) view:(SkNSView*)view didAddMenu:(const SkOSMenu*)menu; |
michael@0 | 19 | - (void) view:(SkNSView*)view didUpdateMenu:(const SkOSMenu*)menu; |
michael@0 | 20 | @end |
michael@0 | 21 | |
michael@0 | 22 | @interface SkNSView : NSView { |
michael@0 | 23 | BOOL fRedrawRequestPending; |
michael@0 | 24 | |
michael@0 | 25 | NSString* fTitle; |
michael@0 | 26 | SkOSWindow* fWind; |
michael@0 | 27 | #if SK_SUPPORT_GPU |
michael@0 | 28 | NSOpenGLContext* fGLContext; |
michael@0 | 29 | #endif |
michael@0 | 30 | id<SkNSViewOptionsDelegate> fOptionsDelegate; |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | @property (nonatomic, readonly) SkOSWindow *fWind; |
michael@0 | 34 | @property (nonatomic, retain) NSString* fTitle; |
michael@0 | 35 | #if SK_SUPPORT_GPU |
michael@0 | 36 | @property (nonatomic, retain) NSOpenGLContext* fGLContext; |
michael@0 | 37 | #endif |
michael@0 | 38 | @property (nonatomic, assign) id<SkNSViewOptionsDelegate> fOptionsDelegate; |
michael@0 | 39 | |
michael@0 | 40 | - (id)initWithDefaults; |
michael@0 | 41 | - (void)setUpWindow; |
michael@0 | 42 | - (void)resizeSkView:(NSSize)newSize; |
michael@0 | 43 | - (void)setSkTitle:(const char*)title; |
michael@0 | 44 | - (void)onAddMenu:(const SkOSMenu*)menu; |
michael@0 | 45 | - (void)onUpdateMenu:(const SkOSMenu*)menu; |
michael@0 | 46 | - (void)postInvalWithRect:(const SkIRect*)rectOrNil; |
michael@0 | 47 | - (BOOL)onHandleEvent:(const SkEvent&)event; |
michael@0 | 48 | |
michael@0 | 49 | - (bool)attach:(SkOSWindow::SkBackEndTypes)attachType withMSAASampleCount:(int) sampleCount andGetInfo:(SkOSWindow::AttachmentInfo*) info; |
michael@0 | 50 | - (void)detach; |
michael@0 | 51 | - (void)present; |
michael@0 | 52 | @end |