| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012, Google Inc. All rights reserved. | 2 * Copyright (C) 2012, Google 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "core/html/forms/RadioInputType.h" | 63 #include "core/html/forms/RadioInputType.h" |
| 64 #include "core/html/parser/HTMLParserIdioms.h" | 64 #include "core/html/parser/HTMLParserIdioms.h" |
| 65 #include "core/html/shadow/MediaControlElements.h" | 65 #include "core/html/shadow/MediaControlElements.h" |
| 66 #include "core/layout/LayoutBlockFlow.h" | 66 #include "core/layout/LayoutBlockFlow.h" |
| 67 #include "core/layout/LayoutObject.h" | 67 #include "core/layout/LayoutObject.h" |
| 68 #include "core/svg/SVGElement.h" | 68 #include "core/svg/SVGElement.h" |
| 69 #include "modules/accessibility/AXObjectCacheImpl.h" | 69 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 70 #include "platform/UserGestureIndicator.h" | 70 #include "platform/UserGestureIndicator.h" |
| 71 #include "platform/text/PlatformLocale.h" | 71 #include "platform/text/PlatformLocale.h" |
| 72 #include "platform/weborigin/KURL.h" | 72 #include "platform/weborigin/KURL.h" |
| 73 #include "wtf/text/StringBuilder.h" | 73 #include "platform/wtf/text/StringBuilder.h" |
| 74 | 74 |
| 75 namespace blink { | 75 namespace blink { |
| 76 | 76 |
| 77 using namespace HTMLNames; | 77 using namespace HTMLNames; |
| 78 | 78 |
| 79 class SparseAttributeSetter { | 79 class SparseAttributeSetter { |
| 80 USING_FAST_MALLOC(SparseAttributeSetter); | 80 USING_FAST_MALLOC(SparseAttributeSetter); |
| 81 | 81 |
| 82 public: | 82 public: |
| 83 virtual void Run(const AXObject&, | 83 virtual void Run(const AXObject&, |
| (...skipping 3184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3268 return String(); | 3268 return String(); |
| 3269 return ToTextControlElement(node)->StrippedPlaceholder(); | 3269 return ToTextControlElement(node)->StrippedPlaceholder(); |
| 3270 } | 3270 } |
| 3271 | 3271 |
| 3272 DEFINE_TRACE(AXNodeObject) { | 3272 DEFINE_TRACE(AXNodeObject) { |
| 3273 visitor->Trace(node_); | 3273 visitor->Trace(node_); |
| 3274 AXObject::Trace(visitor); | 3274 AXObject::Trace(visitor); |
| 3275 } | 3275 } |
| 3276 | 3276 |
| 3277 } // namespace blink | 3277 } // namespace blink |
| OLD | NEW |