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 | #filter substitution |
michael@0 | 2 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 3 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
michael@0 | 4 | package="org.mozilla.roboexample.test" |
michael@0 | 5 | android:versionCode="1" |
michael@0 | 6 | android:versionName="1.0" > |
michael@0 | 7 | |
michael@0 | 8 | <uses-sdk android:minSdkVersion="8" /> |
michael@0 | 9 | |
michael@0 | 10 | <instrumentation |
michael@0 | 11 | android:name="org.mozilla.gecko.FennecInstrumentationTestRunner" |
michael@0 | 12 | android:targetPackage="@ANDROID_PACKAGE_NAME@" /> |
michael@0 | 13 | |
michael@0 | 14 | <application |
michael@0 | 15 | android:label="@string/app_name" > |
michael@0 | 16 | <uses-library android:name="android.test.runner" /> |
michael@0 | 17 | |
michael@0 | 18 | <!-- Fake handlers to ensure that we have some share intents to show in our share handler list --> |
michael@0 | 19 | <activity android:name="org.mozilla.gecko.RobocopShare1" |
michael@0 | 20 | android:label="Robocop fake activity"> |
michael@0 | 21 | |
michael@0 | 22 | <intent-filter android:label="Fake robocop share handler 1"> |
michael@0 | 23 | <action android:name="android.intent.action.SEND" /> |
michael@0 | 24 | <category android:name="android.intent.category.DEFAULT" /> |
michael@0 | 25 | <data android:mimeType="text/*" /> |
michael@0 | 26 | </intent-filter> |
michael@0 | 27 | |
michael@0 | 28 | </activity> |
michael@0 | 29 | |
michael@0 | 30 | <activity android:name="org.mozilla.gecko.RobocopShare2" |
michael@0 | 31 | android:label="Robocop fake activity 2"> |
michael@0 | 32 | |
michael@0 | 33 | <intent-filter android:label="Fake robocop share handler 2"> |
michael@0 | 34 | <action android:name="android.intent.action.SEND" /> |
michael@0 | 35 | <category android:name="android.intent.category.DEFAULT" /> |
michael@0 | 36 | <data android:mimeType="text/*" /> |
michael@0 | 37 | </intent-filter> |
michael@0 | 38 | |
michael@0 | 39 | </activity> |
michael@0 | 40 | |
michael@0 | 41 | </application> |
michael@0 | 42 | |
michael@0 | 43 | </manifest> |