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

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

Issue 10696166: Remove #pragma once from content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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_GTK_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
7 #pragma once
8 7
9 #include "content/browser/accessibility/browser_accessibility_manager.h" 8 #include "content/browser/accessibility/browser_accessibility_manager.h"
10 9
11 class BrowserAccessibilityGtk; 10 class BrowserAccessibilityGtk;
12 struct ViewHostMsg_AccessibilityNotification_Params; 11 struct ViewHostMsg_AccessibilityNotification_Params;
13 12
14 // Manages a tree of BrowserAccessibilityGtk objects. 13 // Manages a tree of BrowserAccessibilityGtk objects.
15 class BrowserAccessibilityManagerGtk : public BrowserAccessibilityManager { 14 class BrowserAccessibilityManagerGtk : public BrowserAccessibilityManager {
16 public: 15 public:
17 virtual ~BrowserAccessibilityManagerGtk(); 16 virtual ~BrowserAccessibilityManagerGtk();
(...skipping 11 matching lines...) Expand all
29 28
30 void RecursivelySendChildrenChanged(BrowserAccessibilityGtk* node); 29 void RecursivelySendChildrenChanged(BrowserAccessibilityGtk* node);
31 30
32 // Give BrowserAccessibilityManager::Create access to our constructor. 31 // Give BrowserAccessibilityManager::Create access to our constructor.
33 friend class BrowserAccessibilityManager; 32 friend class BrowserAccessibilityManager;
34 33
35 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerGtk); 34 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerGtk);
36 }; 35 };
37 36
38 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_ 37 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698