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
(174)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: components/dom_distiller/content/resources/dom_distiller_viewer.js
Issue
260073009
:
[dom_distiller] Add support for incremental viewer. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase
Created 6 years, 7 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:
build/ios/grit_whitelist.txt
chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc
components/dom_distiller/content/dom_distiller_viewer_source.cc
components/dom_distiller/content/dom_distiller_viewer_source_unittest.cc
components/dom_distiller/content/resources/dom_distiller_viewer.html
components/dom_distiller/content/resources/dom_distiller_viewer.js
components/dom_distiller/core/css/distilledpage.css
components/dom_distiller/core/distiller.h
components/dom_distiller/core/distiller.cc
components/dom_distiller/core/fake_db.cc
components/dom_distiller/core/fake_distiller.h
components/dom_distiller/core/fake_distiller.cc
components/dom_distiller/core/proto/distilled_page.proto
components/dom_distiller/core/url_constants.h
components/dom_distiller/core/url_constants.cc
components/dom_distiller/core/viewer.h
components/dom_distiller/core/viewer.cc
components/dom_distiller_strings.grdp
components/resources/dom_distiller_resources.grdp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« components/dom_distiller/content/dom_distiller_viewer_source.cc
('K') |
« components/dom_distiller/content/resources/dom_distiller_viewer.html
('k') |
components/dom_distiller/core/css/distilledpage.css »
('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
// Copyright 2014 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
function addToPage(html) {
6
var div = document.createElement('div');
7
div.innerHTML = html;
8
document.getElementById('content').appendChild(div);
9
}
10
11
function showLoadingIndicator(isLastPage) {
12
document.getElementById('loadingIndicator').className =
13
isLastPage ? 'hidden' : 'visible';
14
}
OLD
NEW
« components/dom_distiller/content/dom_distiller_viewer_source.cc
('K') |
« components/dom_distiller/content/resources/dom_distiller_viewer.html
('k') |
components/dom_distiller/core/css/distilledpage.css »
('j') |
no next file with comments »
Issue 260073009: [dom_distiller] Add support for incremental viewer. (Closed)
Created 6 years, 7 months ago by Yaron
Modified 6 years, 7 months ago
Reviewers: nyquist, Charlie Reis
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 49
This is Rietveld
408576698