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
(23)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: sky/engine/core/painting/Picture.cpp
Issue
1122423009
:
Make it possible to custom-paint without an Element. (Closed)
Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Comment tweak
Created 5 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:
sky/engine/core/core.gni
sky/engine/core/dom/Document.h
sky/engine/core/dom/Document.cpp
sky/engine/core/dom/Document.idl
sky/engine/core/painting/Canvas.h
sky/engine/core/painting/Canvas.cpp
sky/engine/core/painting/Canvas.idl
sky/engine/core/painting/PaintingContext.h
sky/engine/core/painting/PaintingContext.cpp
sky/engine/core/painting/PaintingContext.idl
sky/engine/core/painting/PaintingTasks.h
sky/engine/core/painting/PaintingTasks.cpp
sky/engine/core/painting/Picture.h
sky/engine/core/painting/Picture.cpp
sky/engine/core/painting/Picture.idl
sky/engine/core/painting/PictureRecorder.h
sky/engine/core/painting/PictureRecorder.cpp
sky/engine/core/painting/PictureRecorder.idl
sky/engine/core/rendering/RenderBox.h
sky/engine/core/rendering/RenderBox.cpp
sky/engine/core/rendering/RenderView.cpp
sky/examples/display_list/full_screen_circle.dart
sky/examples/display_list/main.sky
View unified diff
|
Download patch
« sky/engine/core/painting/Canvas.h
('K') |
« sky/engine/core/painting/Picture.h
('k') |
sky/engine/core/painting/Picture.idl »
('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 2015 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
#include "sky/engine/config.h"
6
#include "sky/engine/core/painting/Picture.h"
7
8
#include "base/logging.h"
9
10
namespace blink {
11
12
PassRefPtr<Picture> Picture::create(PassRefPtr<DisplayList> list)
13
{
14
ASSERT(list);
15
return adoptRef(new Picture(list));
16
}
17
18
Picture::Picture(PassRefPtr<DisplayList> list)
19
: m_displayList(list)
20
{
21
}
22
23
Picture::~Picture()
24
{
25
}
26
27
} // namespace blink
OLD
NEW
« sky/engine/core/painting/Canvas.h
('K') |
« sky/engine/core/painting/Picture.h
('k') |
sky/engine/core/painting/Picture.idl »
('j') |
no next file with comments »
Issue 1122423009: Make it possible to custom-paint without an Element. (Closed)
Created 5 years, 7 months ago by eseidel
Modified 5 years, 7 months ago
Reviewers: Hixie, Matt Perry
Base URL: git@github.com:domokit/mojo.git@master
Comments: 1
This is Rietveld
408576698