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
(644)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: public/web/WebTreeScopeType.h
Issue
1132133009
:
Plumb whether or not a frame is in shadow DOM to the embedder. (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments
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:
Source/core/frame/FrameClient.h
Source/core/loader/EmptyClients.h
Source/web/FrameLoaderClientImpl.h
Source/web/FrameLoaderClientImpl.cpp
Source/web/RemoteFrameClientImpl.h
Source/web/RemoteFrameClientImpl.cpp
Source/web/WebFrame.cpp
Source/web/WebLocalFrameImpl.h
Source/web/WebLocalFrameImpl.cpp
Source/web/WebRemoteFrameImpl.h
Source/web/WebRemoteFrameImpl.cpp
Source/web/tests/FrameTestHelpers.cpp
Source/web/tests/WebViewTest.cpp
public/web/WebFrame.h
public/web/WebFrameClient.h
public/web/WebLocalFrame.h
public/web/WebRemoteFrame.h
public/web/WebTreeScopeType.h
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« public/web/WebRemoteFrame.h
('k') |
no next file »
|
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 found
3
// in the LICENSE file.
4
5
#ifndef WebTreeScopeType_h
6
#define WebTreeScopeType_h
7
8
namespace blink {
9
10
// Indicates if an item is in a document tree or in a shadow tree, per the
11
// Shadow DOM spec: https://w3c.github.io/webcomponents/spec/shadow/
12
enum class WebTreeScopeType {
13
Document,
14
Shadow,
15
Last = Shadow,
16
};
17
18
} // namespace blink
19
20
#endif // WebTreeScopeType_h
OLD
NEW
« no previous file with comments
|
« public/web/WebRemoteFrame.h
('k') |
no next file »
|
no next file with comments »
Issue 1132133009: Plumb whether or not a frame is in shadow DOM to the embedder. (Closed)
Created 5 years, 7 months ago by dcheng
Modified 5 years, 7 months ago
Reviewers: hayato
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 4
This is Rietveld
408576698