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 | |
8 | 7 |
9 #include <atk/atk.h> | 8 #include <atk/atk.h> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "content/browser/accessibility/browser_accessibility.h" | 11 #include "content/browser/accessibility/browser_accessibility.h" |
13 | 12 |
14 class BrowserAccessibilityGtk; | 13 class BrowserAccessibilityGtk; |
15 class BrowserAccessibilityManagerGtk; | 14 class BrowserAccessibilityManagerGtk; |
16 | 15 |
17 G_BEGIN_DECLS | 16 G_BEGIN_DECLS |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 AtkObject* atk_object_; | 82 AtkObject* atk_object_; |
84 AtkRole atk_role_; | 83 AtkRole atk_role_; |
85 std::string atk_acc_name_; | 84 std::string atk_acc_name_; |
86 std::string atk_acc_description_; | 85 std::string atk_acc_description_; |
87 | 86 |
88 private: | 87 private: |
89 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); | 88 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityGtk); |
90 }; | 89 }; |
91 | 90 |
92 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ | 91 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_GTK_H_ |
OLD | NEW |