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

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

Issue 15556002: Refactoring: Generalize CachedSVGDocument for non-SVG use. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Resolved the conflict. Created 7 years, 7 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 | Source/core/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "core/rendering/RenderFileUploadControl.h" 53 #include "core/rendering/RenderFileUploadControl.h"
54 #include "core/rendering/RenderHTMLCanvas.h" 54 #include "core/rendering/RenderHTMLCanvas.h"
55 #include "core/rendering/RenderImage.h" 55 #include "core/rendering/RenderImage.h"
56 #include "core/rendering/RenderInline.h" 56 #include "core/rendering/RenderInline.h"
57 #include "core/rendering/RenderLayer.h" 57 #include "core/rendering/RenderLayer.h"
58 #include "core/rendering/RenderListMarker.h" 58 #include "core/rendering/RenderListMarker.h"
59 #include "core/rendering/RenderMenuList.h" 59 #include "core/rendering/RenderMenuList.h"
60 #include "core/rendering/RenderTextControlSingleLine.h" 60 #include "core/rendering/RenderTextControlSingleLine.h"
61 #include "core/rendering/RenderTextFragment.h" 61 #include "core/rendering/RenderTextFragment.h"
62 #include "core/rendering/RenderWidget.h" 62 #include "core/rendering/RenderWidget.h"
63 #include "core/svg/SVGDocument.h"
63 #include "core/svg/SVGSVGElement.h" 64 #include "core/svg/SVGSVGElement.h"
64 #include "core/svg/graphics/SVGImage.h" 65 #include "core/svg/graphics/SVGImage.h"
65 #include "core/svg/graphics/SVGImageChromeClient.h" 66 #include "core/svg/graphics/SVGImageChromeClient.h"
66 #include <wtf/StdLibExtras.h> 67 #include <wtf/StdLibExtras.h>
67 #include <wtf/text/StringBuilder.h> 68 #include <wtf/text/StringBuilder.h>
68 #include <wtf/unicode/CharacterNames.h> 69 #include <wtf/unicode/CharacterNames.h>
69 70
70 using namespace std; 71 using namespace std;
71 72
72 namespace WebCore { 73 namespace WebCore {
(...skipping 3106 matching lines...) Expand 10 before | Expand all | Expand 10 after
3179 if (label && label->renderer()) { 3180 if (label && label->renderer()) {
3180 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR ect(); 3181 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR ect();
3181 result.unite(labelRect); 3182 result.unite(labelRect);
3182 } 3183 }
3183 } 3184 }
3184 3185
3185 return result; 3186 return result;
3186 } 3187 }
3187 3188
3188 } // namespace WebCore 3189 } // namespace WebCore
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698