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

Side by Side Diff: ui/views/accessibility/native_view_accessibility_mac.h

Issue 303543004: MacViews: views_examples_with_content_exe working! Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add files Created 6 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_VIEWS_CORE_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_MAC_H_
6 #define UI_VIEWS_CORE_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_MAC_H_
7
8 #include "ui/views/accessibility/native_view_accessibility.h"
9
10 namespace views {
11
12 class NativeViewAccessibilityMac : public NativeViewAccessibility {
13 public:
14 NativeViewAccessibilityMac(NSView* view);
15 virtual ~NativeViewAccessibilityMac();
16
17 virtual void NotifyAccessibilityEvent(ui::AXEvent event_type) OVERRIDE;
18
19 virtual gfx::NativeViewAccessible GetNativeObject() OVERRIDE;
20
21 private:
22 NSView* view_; // Weak. Owns us.
23
24 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibilityMac);
25 };
26
27 } // namepsace views
28
29 #endif // UI_VIEWS_CORE_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_MAC_H_
OLDNEW
« no previous file with comments | « ui/native_theme/native_theme_mac.mm ('k') | ui/views/accessibility/native_view_accessibility_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698