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

Side by Side Diff: chrome/browser/browser_accessibility_manager_win.h

Issue 2830005: Rename browser_accessibility to browser_accessibility_win, and same for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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
Property Changes:
Added: svn:mergeinfo
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_BROWSER_ACCESSIBILITY_MANAGER_H_ 5 #ifndef CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_
6 #define CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_H_ 6 #define CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlcom.h> 9 #include <atlcom.h>
10 #include <oleacc.h> 10 #include <oleacc.h>
11 11
12 #include <map> 12 #include <map>
13 13
14 #include "base/hash_tables.h" 14 #include "base/hash_tables.h"
15 #include "base/scoped_comptr_win.h" 15 #include "base/scoped_comptr_win.h"
16 #include "base/scoped_ptr.h" 16 #include "base/scoped_ptr.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 base::hash_map<LONG, BrowserAccessibility*> child_id_map_; 110 base::hash_map<LONG, BrowserAccessibility*> child_id_map_;
111 111
112 // The next child ID to use; static so that they're global to the process. 112 // The next child ID to use; static so that they're global to the process.
113 // Screen readers cache these IDs to see if they've seen the same object 113 // Screen readers cache these IDs to see if they've seen the same object
114 // before so we should avoid reusing them within the same project. 114 // before so we should avoid reusing them within the same project.
115 static LONG next_child_id_; 115 static LONG next_child_id_;
116 116
117 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager); 117 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager);
118 }; 118 };
119 119
120 #endif // CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_H_ 120 #endif // CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_accessibility_manager.cc ('k') | chrome/browser/browser_accessibility_manager_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698