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

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2852763002: Added a system caret used for accessibility on Windows. (Closed)
Patch Set: Fixed formatting. Created 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 article, 86 article,
87 audio, 87 audio,
88 banner, 88 banner,
89 blockquote, 89 blockquote,
90 // TODO(nektar): Remove busy_indicator because it's used nowhere. 90 // TODO(nektar): Remove busy_indicator because it's used nowhere.
91 busy_indicator, 91 busy_indicator,
92 button, 92 button,
93 button_drop_down, // Not used on Web. 93 button_drop_down, // Not used on Web.
94 canvas, 94 canvas,
95 caption, 95 caption,
96 caret,
97 cell, 96 cell,
98 check_box, 97 check_box,
99 client, 98 client,
100 color_well, 99 color_well,
101 column_header, 100 column_header,
102 column, 101 column,
103 combo_box, 102 combo_box,
104 complementary, 103 complementary,
105 content_info, 104 content_info,
106 date, 105 date,
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 // First node is before the second one. 657 // First node is before the second one.
659 before, 658 before,
660 659
661 // Nodes are the same. 660 // Nodes are the same.
662 equal, 661 equal,
663 662
664 // First node is after the second one. 663 // First node is after the second one.
665 after 664 after
666 }; 665 };
667 }; 666 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698