Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(393)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: chrome/test/data/workers/single_shared_worker.html
Issue
580007
:
Changed CreateWorker to coalesce any matching queued shared workers when a (Closed)
Patch Set: Now supports multiple queued instances of one shared worker.
Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
chrome/browser/worker_host/worker_process_host.h
chrome/browser/worker_host/worker_process_host.cc
chrome/browser/worker_host/worker_service.h
chrome/browser/worker_host/worker_service.cc
chrome/test/data/workers/many_shared_workers.html
chrome/test/data/workers/queued_shared_worker_shutdown.html
chrome/test/data/workers/shutdown_shared_worker.html
chrome/test/data/workers/single_shared_worker.html
chrome/test/data/workers/worker_close.html
chrome/test/data/workers/worker_common.js
chrome/worker/worker_uitest.cc
View unified diff
|
Download patch
« no previous file with comments
|
« chrome/test/data/workers/shutdown_shared_worker.html
('k') |
chrome/test/data/workers/worker_close.html »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<html>
2
<body>
3
<div id=result></div>
4
<script>
5
function log(message)
6
{
7
document.getElementById("result").innerHTML += message + "<br>";
8
}
9
10
var url = document.location.toString();
11
var id = parseInt(url.substr(url.search("id=") + 3));
12
log("Creating worker #" + id);
13
var worker = new SharedWorker("worker_common.js?id=" + id);
14
</script>
15
16
</body>
17
</html>
OLD
NEW
« no previous file with comments
|
« chrome/test/data/workers/shutdown_shared_worker.html
('k') |
chrome/test/data/workers/worker_close.html »
('j') |
no next file with comments »
Issue 580007: Changed CreateWorker to coalesce any matching queued shared workers when a (Closed)
Created 10 years, 10 months ago by Andrew T Wilson (Slow)
Modified 9 years, 7 months ago
Reviewers: jam
Base URL:
Comments: 2
This is Rietveld
408576698