OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ | 5 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ |
6 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ | 6 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "ui/accessibility/ax_enums.h" | 10 #include "ui/accessibility/ax_enums.h" |
11 #include "ui/gfx/rect.h" | 11 #include "ui/gfx/geometry/rect.h" |
12 | 12 |
13 class AccessibilityControlInfo; | 13 class AccessibilityControlInfo; |
14 class AccessibilityMenuInfo; | 14 class AccessibilityMenuInfo; |
15 class AccessibilityWindowInfo; | 15 class AccessibilityWindowInfo; |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class DictionaryValue; | 19 class DictionaryValue; |
20 } | 20 } |
21 | 21 |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 int item_count() const { return item_count_; } | 442 int item_count() const { return item_count_; } |
443 | 443 |
444 private: | 444 private: |
445 // The 0-based index of the currently selected row. | 445 // The 0-based index of the currently selected row. |
446 int item_index_; | 446 int item_index_; |
447 // Count of rows in the table. | 447 // Count of rows in the table. |
448 int item_count_; | 448 int item_count_; |
449 }; | 449 }; |
450 | 450 |
451 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ | 451 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EVENTS_H_ |
OLD | NEW |