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

Side by Side Diff: ui/views/accessibility/native_view_accessibility.cc

Issue 23506027: Implement web content hit testing in win aura. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix compile error Created 7 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "ui/views/accessibility/native_view_accessibility.h" 5 #include "ui/views/accessibility/native_view_accessibility.h"
6 6
7 namespace views { 7 namespace views {
8 8
9 #if !defined(OS_WIN) 9 #if !defined(OS_WIN)
10 // static 10 // static
(...skipping 11 matching lines...) Expand all
22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() { 22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() {
23 return NULL; 23 return NULL;
24 } 24 }
25 25
26 void NativeViewAccessibility::Destroy() { 26 void NativeViewAccessibility::Destroy() {
27 delete this; 27 delete this;
28 } 28 }
29 29
30 #if !defined(OS_WIN) 30 #if !defined(OS_WIN)
31 // static 31 // static
32 void NativeViewAccessibility::RegisterWebView(AccessibleWebView* web_view) { 32 void NativeViewAccessibility::RegisterWebView(View* web_view) {
33 } 33 }
34 34
35 // static 35 // static
36 void NativeViewAccessibility::UnregisterWebView(AccessibleWebView* web_view) { 36 void NativeViewAccessibility::UnregisterWebView(View* web_view) {
37 } 37 }
38 #endif 38 #endif
39 39
40 } // namespace views 40 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/accessibility/native_view_accessibility.h ('k') | ui/views/accessibility/native_view_accessibility_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698