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

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
« no previous file with comments | « views/accessibility/native_view_accessibility_win.cc ('k') | views/views.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/view.h
===================================================================
--- views/view.h (revision 107903)
+++ 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 {
@@ -44,7 +48,8 @@
}
#if defined(OS_WIN)
-class NativeViewAccessibilityWin;
+class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2"))
+NativeViewAccessibilityWin;
#endif
namespace views {
@@ -1440,7 +1445,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);
« no previous file with comments | « views/accessibility/native_view_accessibility_win.cc ('k') | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698