searching for reviewer(ehsan)
bc42a2aec0e4f0a89c858ecdeb93c4b342a06c9c: Bug 1582508 - part10 : change `MediaSessionPlaybackTestState::None` to `MediaSessionPlaybackTestState::Stopped` to fix the build fail on X11. r=webidl,Ehsan,chunmin
alwu <alwu@mozilla.com> - Tue, 17 Mar 2020 01:01:33 +0000 - rev 519084
Push
37221 by opoprus@mozilla.com at Tue, 17 Mar 2020 09:36:40 +0000
Bug 1582508 - part10 : change `MediaSessionPlaybackTestState::None` to `MediaSessionPlaybackTestState::Stopped` to fix the build fail on X11. r=webidl,Ehsan,chunmin
On X11, there is an universal definition for `None`, and it conflicts with the `None` in the enum of `MediaSessionPlaybackTestState`, which causes a build fail on X11. Also, as the `MediaSessionPlaybackTestState` is defined in the `ChromeUtilsBinding.h`, which is automatically generated by the code gen, we can't include `X11UndefineNone.h` to workaround this problem.
Therefore, we have to change its name to avoid using the same name.
[1] from `/usr/include/X11/X.h:115`
#define None 0L /* universal null resource or null atom */
Differential Revision:
https://phabricator.services.mozilla.com/D66445
0251a2bedd62f63ada989293404c3cee0a15f68d: Bug 1582508 - part7 : create a chrome-only method to get the playback state from the main controller. r=webidl,Ehsan
alwu <alwu@mozilla.com> - Tue, 17 Mar 2020 01:01:31 +0000 - rev 519081
Push
37221 by opoprus@mozilla.com at Tue, 17 Mar 2020 09:36:40 +0000
Bug 1582508 - part7 : create a chrome-only method to get the playback state from the main controller. r=webidl,Ehsan
Implement a chrome-only method `getCurrentMediaSessionPlaybackState()` to expose current actual playback state in testing.
The reason we create an new enum `MediaSessionPlaybackTestState` is because of building issue. If we use `MediaSessionPlaybackState` directly in the `ChromeUtils.webidl`, then the codegen would automatically add an header include of `MediaSessionBinding.h` in the `ChromeUtilsBinding.h`, which would cause the complier complaining about lots of undeclared identifier.
Differential Revision:
https://phabricator.services.mozilla.com/D66344
9c5f84d58424206278fb212dcdedfc428c7a6271: Bug 1582508 - part1 : implement 'MediaSessionPlaybackState'. r=webidl,chunmin,Ehsan
alwu <alwu@mozilla.com> - Fri, 13 Mar 2020 23:31:16 +0000 - rev 519075
Push
37221 by opoprus@mozilla.com at Tue, 17 Mar 2020 09:36:40 +0000
Bug 1582508 - part1 : implement 'MediaSessionPlaybackState'. r=webidl,chunmin,Ehsan
Implement `playbackstate`[1] attribute for media session interface.
[1] https://w3c.github.io/mediasession/#dom-mediasession-playbackstate
Differential Revision:
https://phabricator.services.mozilla.com/D66338
46f4a21a1624ab7a940d068a05d6bd834625411d: Bug 1621282 - Fix the issue that CookieJarSettings is not synced to the WindowContext. r=dimi,Ehsan
Tim Huang <tihuang@mozilla.com> - Tue, 10 Mar 2020 22:03:03 +0000 - rev 517982
Push
37204 by rmaries@mozilla.com at Wed, 11 Mar 2020 15:45:15 +0000
Bug 1621282 - Fix the issue that CookieJarSettings is not synced to the WindowContext. r=dimi,Ehsan
We sync the CookieJarSettings to the WindowContext in
Document::StartDocumentLoad(). This is incorrect because the inner
window hasn't been set to the document in
Document::StartDocumentLoad(). So, the CookieJarSettings doesn't be
synced properly to the WindowContext.
This patch fixes this issue by changing the place where we do the sync. It
changes it to do the sync at the end of
nsGlobalWindowOuter::SetNewDocument() where the inner window and the
window context are both ready for the document.
Differential Revision:
https://phabricator.services.mozilla.com/D66207
b6c572fcaae3725a9c0a69cdde06c389cf1210a1: Bug 1620602 - P3. Pass parent window's BrowsingContext to AllowAccessFor r=timhuang,Ehsan
Dimi Lee <dlee@mozilla.com> - Tue, 10 Mar 2020 20:28:42 +0000 - rev 517957
Push
37203 by ccoroiu@mozilla.com at Wed, 11 Mar 2020 04:11:49 +0000
Bug 1620602 - P3. Pass parent window's BrowsingContext to AllowAccessFor r=timhuang,Ehsan
This patch doesn't make ContentBlocking::AllowAccessFor fission
compatible. This is more like a prerequisite work.
Differential Revision:
https://phabricator.services.mozilla.com/D65729
40bb7ffd4a5cb6f297fc69cd75c8ac55ae16287c: Bug 1620602 - P2. Make Document::MaybeAllowStorageForOpenerAfterUserInteraction fission-compatiable r=timhuang,Ehsan
Dimi Lee <dlee@mozilla.com> - Tue, 10 Mar 2020 20:28:27 +0000 - rev 517956
Push
37203 by ccoroiu@mozilla.com at Wed, 11 Mar 2020 04:11:49 +0000
Bug 1620602 - P2. Make Document::MaybeAllowStorageForOpenerAfterUserInteraction fission-compatiable r=timhuang,Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65728
074be557e278c75dafd9a2e55b85a516961dbb67: Bug 1620602 - P1. Make Document::RequestStorageAccess API fission-compatible r=timhuang,Ehsan
Dimi Lee <dlee@mozilla.com> - Tue, 10 Mar 2020 20:39:46 +0000 - rev 517955
Push
37203 by ccoroiu@mozilla.com at Wed, 11 Mar 2020 04:11:49 +0000
Bug 1620602 - P1. Make Document::RequestStorageAccess API fission-compatible r=timhuang,Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65727
7b06023def6da62d898c9ca32094161bffe1f3b6: Bug 1621003 - Get rid of Set_Cookie2 nsHttp atom header, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Mon, 09 Mar 2020 16:58:08 +0000 - rev 517636
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1621003 - Get rid of Set_Cookie2 nsHttp atom header, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D66041
bd7e270da86dcd04898e7dd69c14eb92864824d2: Bug 1454781 - SameSite policy logged in the console - part 5 - Console messages for beta, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Mon, 09 Mar 2020 09:42:45 +0000 - rev 517502
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1454781 - SameSite policy logged in the console - part 5 - Console messages for beta, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65579
8e8c6ec56d02139f6562fbe21293a47198abd4bd: Bug 1454781 - SameSite policy logged in the console - part 4 - tests, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Mon, 09 Mar 2020 09:42:45 +0000 - rev 517501
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1454781 - SameSite policy logged in the console - part 4 - tests, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65313
48192dbaa130970dcd1804882da0179dae47f593: Bug 1454781 - SameSite policy logged in the console - part 3 - log invalid sameSite values, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 05 Mar 2020 03:41:50 +0000 - rev 517500
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1454781 - SameSite policy logged in the console - part 3 - log invalid sameSite values, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65315
b0a160275ad6c57f9a9bd10ad7e0a51abaedbb77: Bug 1454781 - SameSite policy logged in the console - part 2 - Console messages, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Fri, 06 Mar 2020 17:21:51 +0000 - rev 517499
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1454781 - SameSite policy logged in the console - part 2 - Console messages, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65242
538840a78b4859652c10d72b68a1f6acf7357762: Bug 1454781 - SameSite policy logged in the console - part 1 - more data shown in MOZ_LOG, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 05 Mar 2020 11:04:44 +0000 - rev 517498
Push
37198 by opoprus@mozilla.com at Mon, 09 Mar 2020 21:52:54 +0000
Bug 1454781 - SameSite policy logged in the console - part 1 - more data shown in MOZ_LOG, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65241
4e5b8b058009bc6ee0b117a9df459f7352edc432: Bug 1620635 - static analysis, linting and coding style - add link to meta bugs r=static-analysis-reviewers,Ehsan
Sylvestre Ledru <sledru@mozilla.com> - Fri, 06 Mar 2020 21:01:22 +0000 - rev 517320
Push
37189 by cbrindusan@mozilla.com at Sat, 07 Mar 2020 09:32:21 +0000
Bug 1620635 - static analysis, linting and coding style - add link to meta bugs r=static-analysis-reviewers,Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65761
1843cd41ed4f133f97abfc9664a1d006246d076e: Bug 1620239 - ensure not to access null pointer; r=Ehsan
Liang-Heng Chen <xeonchen@gmail.com> - Fri, 06 Mar 2020 17:20:49 +0000 - rev 517272
Push
37189 by cbrindusan@mozilla.com at Sat, 07 Mar 2020 09:32:21 +0000
Bug 1620239 - ensure not to access null pointer; r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65576
701bd165abc6530701c9a21aa3ee51f74ca6b2e7: Bug 1619964 - Fix anti-tracking heuristic regression, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 05 Mar 2020 21:05:21 +0000 - rev 517137
Push
37186 by malexandru@mozilla.com at Fri, 06 Mar 2020 09:47:39 +0000
Bug 1619964 - Fix anti-tracking heuristic regression, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65515
396f55ee4672cb61814ab17728cba43b4ec43024: Bug 1619602 - Part 2: Don't overwrite the existing ContentBlockingAllowListPrincipal when doing a recomputation in the Document. r=dimi,Ehsan
Tim Huang <tihuang@mozilla.com> - Thu, 05 Mar 2020 19:04:31 +0000 - rev 517119
Push
37186 by malexandru@mozilla.com at Fri, 06 Mar 2020 09:47:39 +0000
Bug 1619602 - Part 2: Don't overwrite the existing ContentBlockingAllowListPrincipal when doing a recomputation in the Document. r=dimi,Ehsan
It is incorrect to overwrite the existing
ContentBlockingAllowListPrincipal when doing a recomputaion in the
Document. The ContentBlockingAllowListPrincipal in the document should
be updated in Document::SetPrincipals().
Differential Revision:
https://phabricator.services.mozilla.com/D65406
98035072dea9b0e6b51578a693579dbb75e22c37: Bug 1619602 - Part 1: Recompute the ContentBlockingAllowListPrincipal if this is a top-level load. r=dimi,Ehsan
Tim Huang <tihuang@mozilla.com> - Thu, 05 Mar 2020 10:48:39 +0000 - rev 517118
Push
37186 by malexandru@mozilla.com at Fri, 06 Mar 2020 09:47:39 +0000
Bug 1619602 - Part 1: Recompute the ContentBlockingAllowListPrincipal if this is a top-level load. r=dimi,Ehsan
For top-level load, we only recompute the ContentBlockingAllowListPrincipal
if the original one is a NullPrincipal. This is for the case for the
initial navigation from about:blank to the loading page. But if we do a
navigation that it is not from the about:blank, we won't recompute it.
This introduces an issue that we would use a wrong principal for the
top-level loading channel.
This patch enforces the recomputation for the top-level loading
regardlesss if the original ContentBlockingAllowList is a NullPrincipal.
Differential Revision:
https://phabricator.services.mozilla.com/D65404
c4481ff32f61f901cdbbc7c6b3b6f264284d643d: Bug 1619964 - Fix anti-tracking heuristic regression, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 05 Mar 2020 15:21:12 +0000 - rev 517068
Push
37186 by malexandru@mozilla.com at Fri, 06 Mar 2020 09:47:39 +0000
Bug 1619964 - Fix anti-tracking heuristic regression, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65515
bbefb498a0c030229fdc8621cba3198854a01b74: Bug 1619875 - Remove the remaining of the prompting code in the cookie-world, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Wed, 04 Mar 2020 21:25:33 +0000 - rev 516917
Push
37183 by nerli@mozilla.com at Thu, 05 Mar 2020 04:16:49 +0000
Bug 1619875 - Remove the remaining of the prompting code in the cookie-world, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D65289
073bf81ba3cdcf9e56a2a526b02a362f5e352d69: Bug 1616570 - Part 4: Sync the CookieBehavior of the CookieJarSettings into the WindowContext. r=Ehsan
Tim Huang <tihuang@mozilla.com> - Wed, 04 Mar 2020 08:59:24 +0000 - rev 516815
Push
37182 by opoprus@mozilla.com at Wed, 04 Mar 2020 16:19:40 +0000
Bug 1616570 - Part 4: Sync the CookieBehavior of the CookieJarSettings into the WindowContext. r=Ehsan
This patch makes the CookieBehavior to be synced with the
CookieJarSettings field in the WindowContext when the document gets the
CookieJarSettings from the LoadInfo. We will only sync the
CookieBehavior but not the CookiePermission here. Because right now we
only need to access the cookieBehavior across process boundaries and
share the cookie permission among processes could leak origin
information.
Differential Revision:
https://phabricator.services.mozilla.com/D63938
1bad5855c84fd691bff61f688470ef03c8222192: Bug 1616570 - Part 3: Change the CookieJarSettings::CreateBlockingAll to be a singleton and rename it to GetBlockingAll(). r=Ehsan
Tim Huang <tihuang@mozilla.com> - Wed, 04 Mar 2020 08:59:21 +0000 - rev 516814
Push
37182 by opoprus@mozilla.com at Wed, 04 Mar 2020 16:19:40 +0000
Bug 1616570 - Part 3: Change the CookieJarSettings::CreateBlockingAll to be a singleton and rename it to GetBlockingAll(). r=Ehsan
We don't need to create the blocking-all cookieJarSettings every time we
request it since it is basically the same. Instead, we should make it as
a singleton.
The patch makes this change the rename the
CookieJarSettings::CreateBlockingAll() to GetBlockingAll() which
reflects the fact that it is a singleton.
Differential Revision:
https://phabricator.services.mozilla.com/D64564
3855ea76bc293343550b54b050e9f404312177b8: Bug 1616570 - Part 2: Add the CookieJarSettingsArgs as a field in the window context. r=Ehsan,farre
Tim Huang <tihuang@mozilla.com> - Wed, 04 Mar 2020 08:59:18 +0000 - rev 516813
Push
37182 by opoprus@mozilla.com at Wed, 04 Mar 2020 16:19:40 +0000
Bug 1616570 - Part 2: Add the CookieJarSettingsArgs as a field in the window context. r=Ehsan,farre
This patch adds a new field CookieJarSettings in the window context.
This makes the CookieJarSettings can be accssible across the process
boundaries, which is needed for the work of making the ETP
Fission-compatible. We reuse the CookieJarSettingsArgs from the
NeckoChannelParams.ipdlh as the field here since it represents the
CookieJarSettings in IPDL and the syncedContext is based on the IPC
between processes. So, I think we can use it directly as a field.
Differential Revision:
https://phabricator.services.mozilla.com/D63937
7a18a0d2e11486076bb73cf2a4f85b41502f3546: Bug 1616570 - Part 1: Rename CookieSettings to CookieJarSettings. r=Ehsan
Tim Huang <tihuang@mozilla.com> - Wed, 04 Mar 2020 08:59:08 +0000 - rev 516812
Push
37182 by opoprus@mozilla.com at Wed, 04 Mar 2020 16:19:40 +0000
Bug 1616570 - Part 1: Rename CookieSettings to CookieJarSettings. r=Ehsan
Given that we are going to add ContentBlockingAllowList in
CookieSettings, so CookieSettings will be responsible for more stuff than the
cookie behavior and cookie permission. We should use a proper name to
reflect the purpose of it. The name 'CookieSettings' is misleading that
this is only for cookie related stuff. So, we decide to rename
'CookieSettins' to 'CookieJarSettings' which serves better meaning here.
Differential Revision:
https://phabricator.services.mozilla.com/D63935
c4d13b3ca1e20b807afa3c1842ecb77951e9d5b7: Bug 1618113 - Allow 'secure' cookies when set by localhost, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Mon, 02 Mar 2020 17:21:03 +0000 - rev 516497
Push
37174 by btara@mozilla.com at Tue, 03 Mar 2020 03:53:06 +0000
Bug 1618113 - Allow 'secure' cookies when set by localhost, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D64290
3f95826f96a8bb19423066f786ddfefb47d40ac4: Bug 1618515 - Don't use [noscript] asciiHost attribute in cookie purging. r=Ehsan
Johann Hofmann <jhofmann@mozilla.com> - Mon, 02 Mar 2020 16:24:36 +0000 - rev 516440
Push
37173 by btara@mozilla.com at Mon, 02 Mar 2020 21:27:32 +0000
Bug 1618515 - Don't use [noscript] asciiHost attribute in cookie purging. r=Ehsan
This is the cheapest solution to unblock the feature. These attributes probably shouldn't
be [noscript] to begin with, which is
bug 1619242. The test addition is really simple and
ensures this test is covered. I filed
bug 1619244 for rewriting this test, with the purpose
of making it easier to add additional cookie test cases.
Differential Revision:
https://phabricator.services.mozilla.com/D64943
da929c5103602745bfcfcefa559c86f6032ec740: Bug 1616915 - Document.requestStorageAccess should work only if the document has an inner and an outer window, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Mon, 02 Mar 2020 14:28:29 +0000 - rev 516387
Push
37173 by btara@mozilla.com at Mon, 02 Mar 2020 21:27:32 +0000
Bug 1616915 - Document.requestStorageAccess should work only if the document has an inner and an outer window, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D64775
85f45093d17263d329e170335a62240058ac31aa: Bug 1615966 - Try to compute topWindowURI/contentblockingallowlistprincipal in the parent process for DocumentChannel. r=nika,Ehsan
Matt Woodrow <mwoodrow@mozilla.com> - Sun, 01 Mar 2020 19:25:01 +0000 - rev 516287
Push
37172 by malexandru@mozilla.com at Mon, 02 Mar 2020 09:48:18 +0000
Bug 1615966 - Try to compute topWindowURI/contentblockingallowlistprincipal in the parent process for DocumentChannel. r=nika,Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63041
7ce25abc115532230d02bd525d5dd8f175254622: Bug 1614639 - Clear expired permissions from the database during idle off of the main thread. r=Ehsan
Mike Conley <mconley@mozilla.com> - Fri, 28 Feb 2020 17:50:19 +0000 - rev 516165
Push
37167 by cbrindusan@mozilla.com at Sat, 29 Feb 2020 04:04:56 +0000
Bug 1614639 - Clear expired permissions from the database during idle off of the main thread. r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D64749
3a9d1f08412163ea466381026bc86c8f09aff9db: Bug 1618864 - Pass cookies/samesite/form-post-blank-reload.https.html WPT test, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Fri, 28 Feb 2020 16:00:24 +0000 - rev 516151
Push
37167 by cbrindusan@mozilla.com at Sat, 29 Feb 2020 04:04:56 +0000
Bug 1618864 - Pass cookies/samesite/form-post-blank-reload.https.html WPT test, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D64742
d16161a6b742a31902af8fa3bcccb6e32365896f: Bug 1618506 - cookies/samesite WPTs require cookie sameSite=lax by default in release, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Fri, 28 Feb 2020 16:13:12 +0000 - rev 516144
Push
37167 by cbrindusan@mozilla.com at Sat, 29 Feb 2020 04:04:56 +0000
Bug 1618506 - cookies/samesite WPTs require cookie sameSite=lax by default in release, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D64593
4769b21c213286eb00ed22b6479ed9305483c5a8: Bug 1614777 - Part 3: report telemetry; r=Ehsan,chutten,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Fri, 28 Feb 2020 00:09:43 +0000 - rev 516044
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 3: report telemetry; r=Ehsan,chutten,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63099
b3b48342f3860b5c2fbebba7562a2aa7590a7f2b: Bug 1614777 - Part 2: collect bandwidth in search suggestions; r=Ehsan,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Fri, 28 Feb 2020 00:09:36 +0000 - rev 516043
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 2: collect bandwidth in search suggestions; r=Ehsan,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63097
46984ece284f52e3dd7eca842bf9ac0c19fbf593: Bug 1614777 - Part 1: collect bandwidth in search telemetry; r=Ehsan,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Fri, 28 Feb 2020 00:09:28 +0000 - rev 516042
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 1: collect bandwidth in search telemetry; r=Ehsan,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63096
cd97cf03cf7d2217b0e5c15866bd67468d5bebb6: Bug 1369957 - Rewrite bug956530-1.html with `await` r=Ehsan
Masayuki Nakano <masayuki@d-toybox.com> - Thu, 27 Feb 2020 21:40:43 +0000 - rev 516035
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1369957 - Rewrite bug956530-1.html with `await` r=Ehsan
Currently, bug956530-1.html calls `finish()` from `onfocus` of the `<input>`
element. But the event listener attribute runs multiple times because the
test explicitly sets focus at least twice. So, the test finishes immediately
after first `focus` event unexpectedly. If the snapshot is compared
immediately after clicking in the `<body>` which is scheduled next to the
`setTimout` called by first `finish()`, the result becomes non-selected
snapshot. That's the reason of the intermittent failure.
Differential Revision:
https://phabricator.services.mozilla.com/D64527
17aebb8d75f1b8820efd9fe4a18ec6dd6d3dd13f: Bug 1614777 - Part 3: report telemetry; r=Ehsan,chutten,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Thu, 27 Feb 2020 21:39:57 +0000 - rev 516009
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 3: report telemetry; r=Ehsan,chutten,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63099
c4f931b08de3e9526e9841874554ffd528464fd7: Bug 1614777 - Part 2: collect bandwidth in search suggestions; r=Ehsan,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Thu, 27 Feb 2020 21:39:54 +0000 - rev 516008
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 2: collect bandwidth in search suggestions; r=Ehsan,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63097
0ab2a4da406f7a31d226edbada3d2d3faae26531: Bug 1614777 - Part 1: collect bandwidth in search telemetry; r=Ehsan,Standard8
Liang-Heng Chen <xeonchen@gmail.com> - Thu, 27 Feb 2020 21:39:50 +0000 - rev 516007
Push
37165 by aiakab@mozilla.com at Fri, 28 Feb 2020 09:24:28 +0000
Bug 1614777 - Part 1: collect bandwidth in search telemetry; r=Ehsan,Standard8
Differential Revision:
https://phabricator.services.mozilla.com/D63096
150b8347d28f8a05bddd6cd9ea4b7851490639a1: Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 27 Feb 2020 04:38:03 +0000 - rev 515832
Push
37162 by nbeleuzu@mozilla.com at Thu, 27 Feb 2020 09:49:56 +0000
Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Differential Revision:
https://phabricator.services.mozilla.com/D63081
cbdc2840f86c5681eb7f44d4dc25b21a24840727: Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Andrea Marchesini <amarchesini@mozilla.com> - Tue, 25 Feb 2020 18:32:08 +0000 - rev 515496
Push
37158 by opoprus@mozilla.com at Wed, 26 Feb 2020 09:27:57 +0000
Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Differential Revision:
https://phabricator.services.mozilla.com/D63081
d76f4c4a4fb6d987df932e9802b6f55b936d523b: Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Andrea Marchesini <amarchesini@mozilla.com> - Tue, 25 Feb 2020 17:46:19 +0000 - rev 515480
Push
37158 by opoprus@mozilla.com at Wed, 26 Feb 2020 09:27:57 +0000
Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Differential Revision:
https://phabricator.services.mozilla.com/D63081
ced61db946ffb3e63d84cee644010f81921c3be0: Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Andrea Marchesini <amarchesini@mozilla.com> - Tue, 25 Feb 2020 12:52:20 +0000 - rev 515449
Push
37157 by ncsoregi@mozilla.com at Tue, 25 Feb 2020 21:43:32 +0000
Bug 1604212 - Enable sameSite=lax by default, r=Ehsan,ahal
Differential Revision:
https://phabricator.services.mozilla.com/D63081
a9be07a24b7407c9c759ffa2cc9195b8e6f9f2b7: Bug 1599262 - Purge site data after identifying tracking site via cookies. r=Ehsan,johannh
Erica Wright <ewright@mozilla.com> - Mon, 24 Feb 2020 18:24:47 +0000 - rev 515339
Push
37155 by ccoroiu@mozilla.com at Tue, 25 Feb 2020 04:23:07 +0000
Bug 1599262 - Purge site data after identifying tracking site via cookies. r=Ehsan,johannh
Differential Revision:
https://phabricator.services.mozilla.com/D57708
06762c633bf6f4609c31add3b3a6df7c2ee5373e: Bug 1519636 - Reformat recent changes to the Google coding style r=Ehsan,kvark
Sylvestre Ledru <sledru@mozilla.com> - Mon, 24 Feb 2020 15:33:38 +0000 - rev 515274
Push
37155 by ccoroiu@mozilla.com at Tue, 25 Feb 2020 04:23:07 +0000
Bug 1519636 - Reformat recent changes to the Google coding style r=Ehsan,kvark
# ignore-this-changeset
Differential Revision:
https://phabricator.services.mozilla.com/D63787
31c9eed2f159f47d340ec14e19d327b20bcd3389: Bug 1577040 - Part 7: Get rid of nsIClassifiedChanel::IsTrackingResource(), r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:30:30 +0000 - rev 514701
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 7: Get rid of nsIClassifiedChanel::IsTrackingResource(), r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63305
669f02d2e979a530ab2f97de7d8534f68d75dd76: Bug 1577040 - Part 6: Fix a couple of tests, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:30:02 +0000 - rev 514700
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 6: Fix a couple of tests, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63304
d4997121ca63298b3ff3cd23cfbc8290219c9e9a: Bug 1577040 - Part 5: Remove nsContentUtils::IsTrackingResource() from anti-tracking, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:29:44 +0000 - rev 514699
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 5: Remove nsContentUtils::IsTrackingResource() from anti-tracking, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63303
a4970ef2e4e23cb7ee1c2397a82af8888f1074ca: Bug 1577040 - Part 4: Get rid of nsIClassifiedChannel::IsSocialTrackingResource(), r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:29:24 +0000 - rev 514698
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 4: Get rid of nsIClassifiedChannel::IsSocialTrackingResource(), r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63302
cb55df34c74490bc39de71c64f3b90575af9afa4: Bug 1577040 - Part 3: Replace nsIHttpChannel.isTrackingResource() with isThirdPartyTrackingResource() in the url-classifier tests, r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:29:15 +0000 - rev 514697
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 3: Replace nsIHttpChannel.isTrackingResource() with isThirdPartyTrackingResource() in the url-classifier tests, r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63301
273ce1bb372a83da5052a2b40a0f4b46ee2a6ed5: Bug 1577040 - Part 2: Remove nsContentUtils::IsTrackingResourceWindow() and replace its calls with IsThirdPartyTrackingResourceWindow(), r=Ehsan
Andrea Marchesini <amarchesini@mozilla.com> - Thu, 20 Feb 2020 07:29:11 +0000 - rev 514696
Push
37141 by malexandru@mozilla.com at Thu, 20 Feb 2020 16:56:52 +0000
Bug 1577040 - Part 2: Remove nsContentUtils::IsTrackingResourceWindow() and replace its calls with IsThirdPartyTrackingResourceWindow(), r=Ehsan
Differential Revision:
https://phabricator.services.mozilla.com/D63300