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

Unified Diff: views/view.h

Issue 8391010: Improve omnibox accessibility on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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: views/view.h
===================================================================
--- views/view.h (revision 107097)
+++ views/view.h (working copy)
@@ -24,6 +24,10 @@
#include "views/background.h"
#include "views/border.h"
+#if defined(OS_WIN)
+#include "base/win/scoped_comptr.h"
+#endif
+
using ui::OSExchangeData;
namespace gfx {
@@ -43,7 +47,8 @@
}
#if defined(OS_WIN)
-class NativeViewAccessibilityWin;
+class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2"))
+NativeViewAccessibilityWin;
#endif
namespace views {
@@ -1444,7 +1449,8 @@
// The Windows-specific accessibility implementation for this view.
#if defined(OS_WIN)
- scoped_refptr<NativeViewAccessibilityWin> native_view_accessibility_win_;
+ base::win::ScopedComPtr<NativeViewAccessibilityWin>
+ native_view_accessibility_win_;
#endif
DISALLOW_COPY_AND_ASSIGN(View);

Powered by Google App Engine
This is Rietveld 408576698