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

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

Issue 7973006: Make isimpledom write shared generated files to SHARED_INTERMEDIATE_DIR (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup the GYP Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_WIN_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 6 #define CONTENT_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 "content/browser/accessibility/browser_accessibility.h" 15 #include "content/browser/accessibility/browser_accessibility.h"
16 #include "ISimpleDOMDocument.h" // Generated NOLINT
17 #include "ISimpleDOMNode.h" // Generated NOLINT
18 #include "ISimpleDOMText.h" // Generated NOLINT
19 #include "third_party/iaccessible2/ia2_api_all.h" 16 #include "third_party/iaccessible2/ia2_api_all.h"
17 #include "third_party/isimpledom/ISimpleDOMDocument.h"
18 #include "third_party/isimpledom/ISimpleDOMNode.h"
19 #include "third_party/isimpledom/ISimpleDOMText.h"
20 #include "webkit/glue/webaccessibility.h" 20 #include "webkit/glue/webaccessibility.h"
21 21
22 class BrowserAccessibilityManagerWin; 22 class BrowserAccessibilityManagerWin;
23 23
24 using webkit_glue::WebAccessibility; 24 using webkit_glue::WebAccessibility;
25 25
26 //////////////////////////////////////////////////////////////////////////////// 26 ////////////////////////////////////////////////////////////////////////////////
27 // 27 //
28 // BrowserAccessibilityWin 28 // BrowserAccessibilityWin
29 // 29 //
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 // is initialized again but the text doesn't change. 695 // is initialized again but the text doesn't change.
696 string16 old_text_; 696 string16 old_text_;
697 697
698 // Give BrowserAccessibility::Create access to our constructor. 698 // Give BrowserAccessibility::Create access to our constructor.
699 friend class BrowserAccessibility; 699 friend class BrowserAccessibility;
700 700
701 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityWin); 701 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityWin);
702 }; 702 };
703 703
704 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 704 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698