Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: chrome/browser/accessibility/browser_accessibility_win.h

Issue 6676030: WinDDK ATL and MSVC express compatability (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: common.gypi: use gyp defines instead of direct compiler flags; _SECURE_ATL conditional handling Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698