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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2207643005: Workaround for warning parsing comment in idl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved comments before each value Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index 92f3af18e98da56a71d07973b96a78bcbde9da9a..4a3b7c05f95ab8998e544288729d4c5feae4bb38 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -516,9 +516,16 @@
// Compares two nodes in an accessibility tree in pre-order traversal.
enum AXTreeOrder {
- undefined, // Not in the same tree, or other error.
- before, // First node is before the second one.
- equal, // Nodes are the same.
- after // First node is after the second one.
+ // Not in the same tree, or other error.
+ undefined,
+
+ // First node is before the second one.
+ before,
+
+ // Nodes are the same.
+ equal,
+
+ // First node is after the second one.
+ after
};
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698