Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js

Issue 2850793005: Remove command line/field trial support and configs for Isolate Extensions. (Closed)
Patch Set: Rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js
diff --git a/chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js b/chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js
index a045ea4b9d4a67ad82793a6814f440b5ba07d098..7de73d3b6b609d148dca09229fae700e53cea099 100644
--- a/chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js
+++ b/chrome/test/data/extensions/api_test/webnavigation/crossProcessHistory/test_crossProcessHistory.js
@@ -12,7 +12,6 @@ onload = function() {
return url.replace(/PORT/g, config.testServer.port);
};
URL_TEST = fixPort(URL_TEST);
- let areExtensionsIsolated = config.isolateExtensions;
chrome.test.runTests([
// Navigates to a different site, but then modifies the history using
@@ -155,7 +154,7 @@ onload = function() {
{ label: "b-onCommitted",
event: "onCommitted",
details: { frameId: 1,
- processId: (areExtensionsIsolated ? 1 : 0),
+ processId: 1,
tabId: 0,
timeStamp: 0,
transitionQualifiers: [],
@@ -164,14 +163,14 @@ onload = function() {
{ label: "b-onDOMContentLoaded",
event: "onDOMContentLoaded",
details: { frameId: 1,
- processId: (areExtensionsIsolated ? 1 : 0),
+ processId: 1,
tabId: 0,
timeStamp: 0,
url: URL_TEST + "5" }},
{ label: "b-onCompleted",
event: "onCompleted",
details: { frameId: 1,
- processId: (areExtensionsIsolated ? 1 : 0),
+ processId: 1,
tabId: 0,
timeStamp: 0,
url: URL_TEST + "5" }}],

Powered by Google App Engine
This is Rietveld 408576698