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

Side by Side Diff: third_party/WebKit/Source/core/layout/ng/ng_macros.h

Issue 2462413002: Reland of Use NGLogicalRect instead of NGExclusion for exclusions. (Closed)
Patch Set: Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2016 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 #ifndef ng_macros_h
6 #define ng_macros_h
7
8 #include "base/macros.h"
9
10 namespace blink {
11
12 // Macro that can be used to annotate cases where it's OK to ignore writing
13 // mode. This is because changing the writing mode establishes a new formatting
14 // context and can be ignored while accessing some properties that are only
15 // stored in physical constraint space. Example: MarginStrut.
16 #ifndef WRITING_MODE_IGNORED
17 #define WRITING_MODE_IGNORED(message)
18 #endif
19
20 } // namespace blink
21
22 #endif // ng_macros_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698