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

Side by Side Diff: content/browser/accessibility/browser_accessibility_manager_gtk.h

Issue 10382051: Add initial GTK web accessibility framework (third attempt). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
7 #pragma once
8
9 #include "content/browser/accessibility/browser_accessibility_manager.h"
10 #include "webkit/glue/webaccessibility.h"
11
12 class BrowserAccessibilityGtk;
13 struct ViewHostMsg_AccessibilityNotification_Params;
14
15 using webkit_glue::WebAccessibility;
16
17 // Manages a tree of BrowserAccessibilityGtk objects.
18 class BrowserAccessibilityManagerGtk : public BrowserAccessibilityManager {
19 public:
20 virtual ~BrowserAccessibilityManagerGtk();
21
22 // BrowserAccessibilityManager methods
23 virtual void NotifyAccessibilityEvent(int type, BrowserAccessibility* node)
24 OVERRIDE;
25
26 private:
27 BrowserAccessibilityManagerGtk(
28 GtkWidget* parent_window,
29 const WebAccessibility& src,
30 BrowserAccessibilityDelegate* delegate,
31 BrowserAccessibilityFactory* factory);
32
33 void RecursivelySendChildrenChanged(BrowserAccessibilityGtk* node);
34
35 // Give BrowserAccessibilityManager::Create access to our constructor.
36 friend class BrowserAccessibilityManager;
37
38 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerGtk);
39 };
40
41 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698