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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | « Source/core/accessibility/AXObject.cpp ('k') | Source/core/css/CSSFontFaceSource.cpp » ('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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "core/rendering/RenderTextControlSingleLine.h" 65 #include "core/rendering/RenderTextControlSingleLine.h"
66 #include "core/rendering/RenderTextFragment.h" 66 #include "core/rendering/RenderTextFragment.h"
67 #include "core/rendering/RenderView.h" 67 #include "core/rendering/RenderView.h"
68 #include "core/rendering/RenderWidget.h" 68 #include "core/rendering/RenderWidget.h"
69 #include "core/svg/SVGDocument.h" 69 #include "core/svg/SVGDocument.h"
70 #include "core/svg/SVGSVGElement.h" 70 #include "core/svg/SVGSVGElement.h"
71 #include "core/svg/graphics/SVGImage.h" 71 #include "core/svg/graphics/SVGImage.h"
72 #include "platform/text/PlatformLocale.h" 72 #include "platform/text/PlatformLocale.h"
73 #include "wtf/StdLibExtras.h" 73 #include "wtf/StdLibExtras.h"
74 74
75 using WebKit::WebLocalizedString; 75 using blink::WebLocalizedString;
76 using namespace std; 76 using namespace std;
77 77
78 namespace WebCore { 78 namespace WebCore {
79 79
80 using namespace HTMLNames; 80 using namespace HTMLNames;
81 81
82 static inline RenderObject* firstChildInContinuation(RenderObject* renderer) 82 static inline RenderObject* firstChildInContinuation(RenderObject* renderer)
83 { 83 {
84 RenderObject* r = toRenderInline(renderer)->continuation(); 84 RenderObject* r = toRenderInline(renderer)->continuation();
85 85
(...skipping 2309 matching lines...) Expand 10 before | Expand all | Expand 10 after
2395 if (label && label->renderer()) { 2395 if (label && label->renderer()) {
2396 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR ect(); 2396 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR ect();
2397 result.unite(labelRect); 2397 result.unite(labelRect);
2398 } 2398 }
2399 } 2399 }
2400 2400
2401 return result; 2401 return result;
2402 } 2402 }
2403 2403
2404 } // namespace WebCore 2404 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXObject.cpp ('k') | Source/core/css/CSSFontFaceSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698