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

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

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, 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 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 #include "ui/views/accessibility/native_view_accessibility_mac.h"
6
7 namespace views {
8
9 NativeViewAccessibilityMac::NativeViewAccessibilityMac(NSView* view)
10 : view_(view) {
11 }
12
13 NativeViewAccessibilityMac::~NativeViewAccessibilityMac() {
14 }
15
16 void NativeViewAccessibilityMac::NotifyAccessibilityEvent(
17 ui::AXEvent event_type) {
18 }
19
20 gfx::NativeViewAccessible NativeViewAccessibilityMac::GetNativeObject() {
21 return view_;
22 }
23
24 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/accessibility/native_view_accessibility_mac.h ('k') | ui/views/cocoa/bridged_content_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698