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

Side by Side Diff: Source/core/accessibility/AccessibilityRenderObject.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 19 matching lines...) Expand all
30 #include "core/accessibility/AccessibilityRenderObject.h" 30 #include "core/accessibility/AccessibilityRenderObject.h"
31 31
32 #include "FrameSelection.h" 32 #include "FrameSelection.h"
33 #include "HTMLFormElement.h" 33 #include "HTMLFormElement.h"
34 #include "HTMLImageElement.h" 34 #include "HTMLImageElement.h"
35 #include "HTMLLabelElement.h" 35 #include "HTMLLabelElement.h"
36 #include "HTMLOptionElement.h" 36 #include "HTMLOptionElement.h"
37 #include "HTMLSelectElement.h" 37 #include "HTMLSelectElement.h"
38 #include "HTMLTextAreaElement.h" 38 #include "HTMLTextAreaElement.h"
39 #include "HitTestResult.h" 39 #include "HitTestResult.h"
40 #include "LocalizedStrings.h"
41 #include "NodeTraversal.h" 40 #include "NodeTraversal.h"
42 #include "Page.h" 41 #include "Page.h"
43 #include "ProgressTracker.h" 42 #include "ProgressTracker.h"
44 #include "RenderFieldset.h" 43 #include "RenderFieldset.h"
45 #include "RenderFileUploadControl.h" 44 #include "RenderFileUploadControl.h"
46 #include "RenderHTMLCanvas.h" 45 #include "RenderHTMLCanvas.h"
47 #include "RenderImage.h" 46 #include "RenderImage.h"
48 #include "RenderInline.h" 47 #include "RenderInline.h"
49 #include "RenderLayer.h" 48 #include "RenderLayer.h"
50 #include "RenderListMarker.h" 49 #include "RenderListMarker.h"
51 #include "RenderMenuList.h" 50 #include "RenderMenuList.h"
52 #include "RenderTextControlSingleLine.h" 51 #include "RenderTextControlSingleLine.h"
53 #include "RenderTextFragment.h" 52 #include "RenderTextFragment.h"
54 #include "RenderWidget.h" 53 #include "RenderWidget.h"
55 #include "RenderedPosition.h" 54 #include "RenderedPosition.h"
56 #include "SVGImage.h" 55 #include "SVGImage.h"
57 #include "SVGImageChromeClient.h" 56 #include "SVGImageChromeClient.h"
58 #include "SVGSVGElement.h" 57 #include "SVGSVGElement.h"
59 #include "VisibleUnits.h" 58 #include "VisibleUnits.h"
60 #include "core/accessibility/AXObjectCache.h" 59 #include "core/accessibility/AXObjectCache.h"
61 #include "core/accessibility/AccessibilityImageMapLink.h" 60 #include "core/accessibility/AccessibilityImageMapLink.h"
62 #include "core/accessibility/AccessibilitySVGRoot.h" 61 #include "core/accessibility/AccessibilitySVGRoot.h"
63 #include "core/accessibility/AccessibilitySpinButton.h" 62 #include "core/accessibility/AccessibilitySpinButton.h"
64 #include "core/accessibility/AccessibilityTable.h" 63 #include "core/accessibility/AccessibilityTable.h"
64 #include "core/platform/LocalizedStrings.h"
65 #include "htmlediting.h" 65 #include "htmlediting.h"
66 #include <wtf/StdLibExtras.h> 66 #include <wtf/StdLibExtras.h>
67 #include <wtf/text/StringBuilder.h> 67 #include <wtf/text/StringBuilder.h>
68 #include <wtf/unicode/CharacterNames.h> 68 #include <wtf/unicode/CharacterNames.h>
69 69
70 using namespace std; 70 using namespace std;
71 71
72 namespace WebCore { 72 namespace WebCore {
73 73
74 using namespace HTMLNames; 74 using namespace HTMLNames;
(...skipping 3327 matching lines...) Expand 10 before | Expand all | Expand 10 after
3402 } 3402 }
3403 3403
3404 int AccessibilityRenderObject::mathLineThickness() const 3404 int AccessibilityRenderObject::mathLineThickness() const
3405 { 3405 {
3406 return getAttribute(MathMLNames::linethicknessAttr).toInt(); 3406 return getAttribute(MathMLNames::linethicknessAttr).toInt();
3407 } 3407 }
3408 3408
3409 #endif 3409 #endif
3410 3410
3411 } // namespace WebCore 3411 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/accessibility/AccessibilityProgressIndicator.cpp ('k') | Source/core/accessibility/AccessibilityScrollbar.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698