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

Side by Side Diff: content/browser/accessibility/browser_accessibility_cocoa.mm

Issue 11788003: Update some #includes in content/browser/ for headers in the new Platform (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | content/browser/devtools/devtools_http_handler_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include <execinfo.h> 5 #include <execinfo.h>
6 6
7 #import "content/browser/accessibility/browser_accessibility_cocoa.h" 7 #import "content/browser/accessibility/browser_accessibility_cocoa.h"
8 8
9 #include <map> 9 #include <map>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/string16.h" 12 #include "base/string16.h"
13 #include "base/sys_string_conversions.h" 13 #include "base/sys_string_conversions.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "content/browser/accessibility/browser_accessibility_manager.h" 15 #include "content/browser/accessibility/browser_accessibility_manager.h"
16 #include "content/public/common/content_client.h" 16 #include "content/public/common/content_client.h"
17 #include "grit/webkit_strings.h" 17 #include "grit/webkit_strings.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" 18 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
19 19
20 // See http://openradar.appspot.com/9896491. This SPI has been tested on 10.5, 20 // See http://openradar.appspot.com/9896491. This SPI has been tested on 10.5,
21 // 10.6, and 10.7. It allows accessibility clients to observe events posted on 21 // 10.6, and 10.7. It allows accessibility clients to observe events posted on
22 // this object. 22 // this object.
23 extern "C" void NSAccessibilityUnregisterUniqueIdForUIElement(id element); 23 extern "C" void NSAccessibilityUnregisterUniqueIdForUIElement(id element);
24 24
25 using content::AccessibilityNodeData; 25 using content::AccessibilityNodeData;
26 using content::BrowserAccessibility; 26 using content::BrowserAccessibility;
27 using content::BrowserAccessibilityManager; 27 using content::BrowserAccessibilityManager;
28 using content::ContentClient; 28 using content::ContentClient;
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 return [super hash]; 1125 return [super hash];
1126 return browserAccessibility_->renderer_id(); 1126 return browserAccessibility_->renderer_id();
1127 } 1127 }
1128 1128
1129 - (BOOL)accessibilityShouldUseUniqueId { 1129 - (BOOL)accessibilityShouldUseUniqueId {
1130 return YES; 1130 return YES;
1131 } 1131 }
1132 1132
1133 @end 1133 @end
1134 1134
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/devtools_http_handler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698