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

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

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
11 #include "content/browser/accessibility/browser_accessibility_manager.h" 11 #include "content/browser/accessibility/browser_accessibility_manager.h"
12 12
13 class BrowserAccessibilityManagerMac : public BrowserAccessibilityManager { 13 class BrowserAccessibilityManagerMac : public BrowserAccessibilityManager {
14 public: 14 public:
15 // Implementation of BrowserAccessibilityManager. 15 // Implementation of BrowserAccessibilityManager.
16 virtual void NotifyAccessibilityEvent(int type, BrowserAccessibility* node); 16 virtual void NotifyAccessibilityEvent(int type,
17 BrowserAccessibility* node) OVERRIDE;
17 18
18 private: 19 private:
19 // This gives BrowserAccessibilityManager::Create access to the class 20 // This gives BrowserAccessibilityManager::Create access to the class
20 // constructor. 21 // constructor.
21 friend class BrowserAccessibilityManager; 22 friend class BrowserAccessibilityManager;
22 23
23 BrowserAccessibilityManagerMac(gfx::NativeView parent_view, 24 BrowserAccessibilityManagerMac(gfx::NativeView parent_view,
24 const webkit_glue::WebAccessibility& src, 25 const webkit_glue::WebAccessibility& src,
25 BrowserAccessibilityDelegate* delegate, 26 BrowserAccessibilityDelegate* delegate,
26 BrowserAccessibilityFactory* factory); 27 BrowserAccessibilityFactory* factory);
27 28
28 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerMac); 29 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerMac);
29 }; 30 };
30 31
31 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_ 32 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_MAC_H_
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_mac.h ('k') | content/browser/appcache/appcache_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698