| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_ACCESSIBILITY_WIN_H_ | 5 #ifndef CHROME_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| 6 #define CHROME_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ | 6 #define CHROME_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <atlbase.h> | 9 #include <atlbase.h> |
| 10 #include <atlcom.h> | 10 #include <atlcom.h> |
| 11 #include <oleacc.h> | 11 #include <oleacc.h> |
| 12 | 12 |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/win/atlcheck.h" |
| 15 #include "chrome/browser/accessibility/browser_accessibility.h" | 16 #include "chrome/browser/accessibility/browser_accessibility.h" |
| 16 #include "ia2_api_all.h" // Generated | 17 #include "ia2_api_all.h" // Generated |
| 17 #include "ISimpleDOMDocument.h" // Generated | 18 #include "ISimpleDOMDocument.h" // Generated |
| 18 #include "ISimpleDOMNode.h" // Generated | 19 #include "ISimpleDOMNode.h" // Generated |
| 19 #include "ISimpleDOMText.h" // Generated | 20 #include "ISimpleDOMText.h" // Generated |
| 20 #include "webkit/glue/webaccessibility.h" | 21 #include "webkit/glue/webaccessibility.h" |
| 21 | 22 |
| 22 class BrowserAccessibilityManagerWin; | 23 class BrowserAccessibilityManagerWin; |
| 23 | 24 |
| 24 using webkit_glue::WebAccessibility; | 25 using webkit_glue::WebAccessibility; |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 int32 ia2_role_; | 487 int32 ia2_role_; |
| 487 int32 ia2_state_; | 488 int32 ia2_state_; |
| 488 | 489 |
| 489 // Give BrowserAccessibility::Create access to our constructor. | 490 // Give BrowserAccessibility::Create access to our constructor. |
| 490 friend class BrowserAccessibility; | 491 friend class BrowserAccessibility; |
| 491 | 492 |
| 492 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityWin); | 493 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityWin); |
| 493 }; | 494 }; |
| 494 | 495 |
| 495 #endif // CHROME_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ | 496 #endif // CHROME_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| OLD | NEW |