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

Unified Diff: chrome/test/data/extensions/api_test/webnavigation/test_targetBlank.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_targetBlank.js
diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_targetBlank.js b/chrome/test/data/extensions/api_test/webnavigation/test_targetBlank.js
index fd1ef68b76d173fcfbe2d45d6188adcdcf7cfa6b..e35608749960ed05ee9592b0e7107b93c67921dd 100644
--- a/chrome/test/data/extensions/api_test/webnavigation/test_targetBlank.js
+++ b/chrome/test/data/extensions/api_test/webnavigation/test_targetBlank.js
@@ -25,12 +25,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: [],
@@ -39,18 +41,21 @@ 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-onCreatedNavigationTarget",
event: "onCreatedNavigationTarget",
details: { sourceFrameId: 0,
+ sourceProcessId: 0,
sourceTabId: 0,
tabId: 1,
timeStamp: 0,
@@ -58,12 +63,14 @@ function runTests() {
{ label: "b-onBeforeNavigate",
event: "onBeforeNavigate",
details: { frameId: 0,
+ processId: 0,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }},
{ label: "b-onCommitted",
event: "onCommitted",
details: { frameId: 0,
+ processId: 0,
tabId: 1,
timeStamp: 0,
transitionQualifiers: [],
@@ -72,12 +79,14 @@ function runTests() {
{ label: "b-onDOMContentLoaded",
event: "onDOMContentLoaded",
details: { frameId: 0,
+ processId: 0,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }},
{ label: "b-onCompleted",
event: "onCompleted",
details: { frameId: 0,
+ processId: 0,
tabId: 1,
timeStamp: 0,
url: URL_TARGET }}],

Powered by Google App Engine
This is Rietveld 408576698