| 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 CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ |
| 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ |
| 7 | 7 |
| 8 #include <atk/atk.h> | 8 #include <atk/atk.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 private: | 78 private: |
| 79 virtual void InitRoleAndState(); | 79 virtual void InitRoleAndState(); |
| 80 | 80 |
| 81 // Give BrowserAccessibility::Create access to our constructor. | 81 // Give BrowserAccessibility::Create access to our constructor. |
| 82 friend class BrowserAccessibility; | 82 friend class BrowserAccessibility; |
| 83 | 83 |
| 84 AtkObject* atk_object_; | 84 AtkObject* atk_object_; |
| 85 AtkRole atk_role_; | 85 AtkRole atk_role_; |
| 86 std::string atk_acc_name_; | 86 std::string atk_acc_name_; |
| 87 std::string atk_acc_description_; | 87 std::string atk_acc_description_; |
| 88 int interface_mask_; |
| 88 | 89 |
| 89 private: | 90 private: |
| 90 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); | 91 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 } // namespace content | 94 } // namespace content |
| 94 | 95 |
| 95 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ | 96 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ |
| OLD | NEW |