Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

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.
Jump to:
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')
OLDNEW
(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
OLDNEW
« no previous file with comments | « public/web/WebRemoteFrame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698