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
(550)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: fpdfsdk/fsdk_pauseadapter.cpp
Issue
2180443002
:
Use actual type instead CFX_Deletable (Closed)
Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments
Created 4 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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
BUILD.gn
core/fpdfapi/cpdf_pagerendercontext.cpp
core/fpdfapi/fpdf_page/cpdf_page.cpp
core/fpdfapi/fpdf_page/include/cpdf_page.h
core/fpdfapi/include/cpdf_modulemgr.h
core/fpdfapi/include/cpdf_pagerendercontext.h
fpdfsdk/fpdf_ext.cpp
fpdfsdk/fpdf_progressive.cpp
fpdfsdk/fpdfview.cpp
fpdfsdk/fsdk_pauseadapter.cpp
fpdfsdk/fsdk_rendercontext.cpp
fpdfsdk/include/fsdk_define.h
fpdfsdk/include/fsdk_pauseadapter.h
fpdfsdk/include/fsdk_rendercontext.h
pdfium.gyp
View unified diff
|
Download patch
« core/fpdfapi/cpdf_pagerendercontext.cpp
('K') |
« fpdfsdk/fpdfview.cpp
('k') |
fpdfsdk/fsdk_rendercontext.cpp »
('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 2016 PDFium 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
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7
#include "fpdfsdk/include/fsdk_pauseadapter.h"
8
9
IFSDK_PAUSE_Adapter::IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause)
10
: m_IPause(IPause) {}
11
12
IFSDK_PAUSE_Adapter::~IFSDK_PAUSE_Adapter() {}
13
14
FX_BOOL IFSDK_PAUSE_Adapter::NeedToPauseNow() {
15
return m_IPause->NeedToPauseNow && m_IPause->NeedToPauseNow(m_IPause);
16
}
OLD
NEW
« core/fpdfapi/cpdf_pagerendercontext.cpp
('K') |
« fpdfsdk/fpdfview.cpp
('k') |
fpdfsdk/fsdk_rendercontext.cpp »
('j') |
no next file with comments »
Issue 2180443002: Use actual type instead CFX_Deletable (Closed)
Created 4 years, 5 months ago by Wei Li
Modified 4 years, 4 months ago
Reviewers: Lei Zhang, dsinclair
Base URL: https://pdfium.googlesource.com/pdfium.git@master
Comments: 12
This is Rietveld
408576698