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

Unified Diff: ui/accessibility/platform/ax_system_caret_win.h

Issue 2852763002: Added a system caret used for accessibility on Windows. (Closed)
Patch Set: Added a system caret for accessibility on Windows. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: ui/accessibility/platform/ax_system_caret_win.h
diff --git a/ui/accessibility/platform/ax_fake_caret_win.h b/ui/accessibility/platform/ax_system_caret_win.h
similarity index 81%
rename from ui/accessibility/platform/ax_fake_caret_win.h
rename to ui/accessibility/platform/ax_system_caret_win.h
index 732e59637a9e557a94587e4d1c2da61e52cae1ca..5560ce678f3d14811c9df36f278ca70c6a7115e8 100644
--- a/ui/accessibility/platform/ax_fake_caret_win.h
+++ b/ui/accessibility/platform/ax_system_caret_win.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UI_ACCESSIBILITY_PLATFORM_AX_FAKE_CARET_WIN_H_
-#define UI_ACCESSIBILITY_PLATFORM_AX_FAKE_CARET_WIN_H_
+#ifndef UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_
+#define UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_
#include <oleacc.h>
@@ -24,10 +24,10 @@ class AXPlatformNodeWin;
// Windows. This is required because Chrome doesn't use the standard system
// caret and because some assistive software still relies on specific
// accessibility APIs to retrieve the caret position.
-class AX_EXPORT AXFakeCaretWin : private AXPlatformNodeDelegate {
+class AX_EXPORT AXSystemCaretWin : private AXPlatformNodeDelegate {
public:
- AXFakeCaretWin(gfx::AcceleratedWidget event_target);
- virtual ~AXFakeCaretWin();
+ explicit AXSystemCaretWin(gfx::AcceleratedWidget event_target);
+ virtual ~AXSystemCaretWin();
base::win::ScopedComPtr<IAccessible> GetCaret() const;
void MoveCaretTo(const gfx::Rect& bounds);
@@ -51,9 +51,9 @@ class AX_EXPORT AXFakeCaretWin : private AXPlatformNodeDelegate {
AXNodeData data_;
friend class AXPlatformNodeWin;
- DISALLOW_COPY_AND_ASSIGN(AXFakeCaretWin);
+ DISALLOW_COPY_AND_ASSIGN(AXSystemCaretWin);
};
} // namespace ui
-#endif // UI_ACCESSIBILITY_PLATFORM_AX_FAKE_CARET_WIN_H_
+#endif // UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698