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

Side by Side Diff: content/browser/accessibility/browser_accessibility_mac.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_MAC_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_
7 #pragma once
8 7
9 #include <map> 8 #include <map>
10 #include <utility> 9 #include <utility>
11 #include <vector> 10 #include <vector>
12 11
13 #include "base/memory/scoped_nsobject.h" 12 #include "base/memory/scoped_nsobject.h"
14 #include "content/browser/accessibility/browser_accessibility.h" 13 #include "content/browser/accessibility/browser_accessibility.h"
15 14
16 @class BrowserAccessibilityCocoa; 15 @class BrowserAccessibilityCocoa;
17 16
(...skipping 20 matching lines...) Expand all
38 37
39 // Allows access to the BrowserAccessibilityCocoa which wraps this. 38 // Allows access to the BrowserAccessibilityCocoa which wraps this.
40 // BrowserAccessibility. 39 // BrowserAccessibility.
41 // We own this object until our manager calls ReleaseReference; 40 // We own this object until our manager calls ReleaseReference;
42 // thereafter, the cocoa object owns us. 41 // thereafter, the cocoa object owns us.
43 BrowserAccessibilityCocoa* browser_accessibility_cocoa_; 42 BrowserAccessibilityCocoa* browser_accessibility_cocoa_;
44 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac); 43 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac);
45 }; 44 };
46 45
47 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ 46 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698