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

Side by Side Diff: webkit/glue/webaccessibility.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | « webkit/glue/web_io_operators.cc ('k') | webkit/glue/webclipboard_impl.h » ('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) 2011 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 #include "webkit/glue/webaccessibility.h" 5 #include "webkit/glue/webaccessibility.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/string_number_conversions.h" 9 #include "base/string_number_conversions.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityRole. h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityRole. h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAttribute.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAttribute.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocumentType.h" 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocumentType.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h"
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNamedNodeMap.h" 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNamedNodeMap.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSize.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h"
27 27
28 #ifndef NDEBUG 28 #ifndef NDEBUG
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityNotif ication.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityNotif ication.h"
30 #endif 30 #endif
31 31
32 using base::DoubleToString; 32 using base::DoubleToString;
33 using base::IntToString; 33 using base::IntToString;
34 using WebKit::WebAccessibilityRole; 34 using WebKit::WebAccessibilityRole;
35 using WebKit::WebAccessibilityObject; 35 using WebKit::WebAccessibilityObject;
36 36
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 bool WebAccessibility::IsParentUnignoredOf( 1002 bool WebAccessibility::IsParentUnignoredOf(
1003 const WebKit::WebAccessibilityObject& ancestor, 1003 const WebKit::WebAccessibilityObject& ancestor,
1004 const WebKit::WebAccessibilityObject& child) { 1004 const WebKit::WebAccessibilityObject& child) {
1005 WebKit::WebAccessibilityObject parent = child.parentObject(); 1005 WebKit::WebAccessibilityObject parent = child.parentObject();
1006 while (!parent.isNull() && parent.accessibilityIsIgnored()) 1006 while (!parent.isNull() && parent.accessibilityIsIgnored())
1007 parent = parent.parentObject(); 1007 parent = parent.parentObject();
1008 return parent.equals(ancestor); 1008 return parent.equals(ancestor);
1009 } 1009 }
1010 1010
1011 } // namespace webkit_glue 1011 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/web_io_operators.cc ('k') | webkit/glue/webclipboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698