| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <atk/atk.h> | 9 #include <atk/atk.h> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "content/browser/accessibility/browser_accessibility.h" | 12 #include "content/browser/accessibility/browser_accessibility.h" |
| 13 #include "webkit/glue/webaccessibility.h" | |
| 14 | |
| 15 using webkit_glue::WebAccessibility; | |
| 16 | 13 |
| 17 class BrowserAccessibilityGtk; | 14 class BrowserAccessibilityGtk; |
| 18 class BrowserAccessibilityManagerGtk; | 15 class BrowserAccessibilityManagerGtk; |
| 19 | 16 |
| 20 G_BEGIN_DECLS | 17 G_BEGIN_DECLS |
| 21 | 18 |
| 22 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type()) | 19 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type()) |
| 23 #define BROWSER_ACCESSIBILITY(obj) \ | 20 #define BROWSER_ACCESSIBILITY(obj) \ |
| 24 (G_TYPE_CHECK_INSTANCE_CAST( \ | 21 (G_TYPE_CHECK_INSTANCE_CAST( \ |
| 25 (obj), BROWSER_ACCESSIBILITY_TYPE, BrowserAccessibilityAtk)) | 22 (obj), BROWSER_ACCESSIBILITY_TYPE, BrowserAccessibilityAtk)) |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 AtkObject* atk_object_; | 83 AtkObject* atk_object_; |
| 87 AtkRole atk_role_; | 84 AtkRole atk_role_; |
| 88 std::string atk_acc_name_; | 85 std::string atk_acc_name_; |
| 89 std::string atk_acc_description_; | 86 std::string atk_acc_description_; |
| 90 | 87 |
| 91 private: | 88 private: |
| 92 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); | 89 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); |
| 93 }; | 90 }; |
| 94 | 91 |
| 95 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ | 92 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ |
| OLD | NEW |