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

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

Issue 10815051: Send the correct process ID with webNavigation events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/test_prerender.js
diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_prerender.js b/chrome/test/data/extensions/api_test/webnavigation/test_prerender.js
index 46348f826b4fc5c4442efa214c17614e9905fc81..a68c7302104bc99854c154fd6aa62885c3bacfa5 100644
--- a/chrome/test/data/extensions/api_test/webnavigation/test_prerender.js
+++ b/chrome/test/data/extensions/api_test/webnavigation/test_prerender.js
@@ -24,12 +24,14 @@ function runTests() {
{ label: "a-onBeforeNavigate",
event: "onBeforeNavigate",
details: { frameId: 0,
+ processId: 0,
tabId: 0,
timeStamp: 0,
url: URL_LOAD }},
{ label: "a-onCommitted",
event: "onCommitted",
details: { frameId: 0,
+ processId: 0,
tabId: 0,
timeStamp: 0,
transitionQualifiers: [],
@@ -38,24 +40,28 @@ function runTests() {
{ label: "a-onDOMContentLoaded",
event: "onDOMContentLoaded",
details: { frameId: 0,
+ processId: 0,
tabId: 0,
timeStamp: 0,
url: URL_LOAD }},
{ label: "a-onCompleted",
event: "onCompleted",
details: { frameId: 0,
+ processId: 0,
tabId: 0,
timeStamp: 0,
url: URL_LOAD }},
{ label: "b-onBeforeNavigate",
event: "onBeforeNavigate",
details: { frameId: 0,
+ processId: 1,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }},
{ label: "b-onCommitted",
event: "onCommitted",
details: { frameId: 0,
+ processId: 1,
tabId: 1,
timeStamp: 0,
transitionQualifiers: [],
@@ -64,12 +70,14 @@ function runTests() {
{ label: "b-onDOMContentLoaded",
event: "onDOMContentLoaded",
details: { frameId: 0,
+ processId: 1,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }},
{ label: "b-onCompleted",
event: "onCompleted",
details: { frameId: 0,
+ processId: 1,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }},

Powered by Google App Engine
This is Rietveld 408576698