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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp

Issue 2830653002: Media Controls: move volume slider to modules/. (Closed)
Patch Set: _ Created 3 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
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/html/HTMLTableCaptionElement.h" 55 #include "core/html/HTMLTableCaptionElement.h"
56 #include "core/html/HTMLTableCellElement.h" 56 #include "core/html/HTMLTableCellElement.h"
57 #include "core/html/HTMLTableElement.h" 57 #include "core/html/HTMLTableElement.h"
58 #include "core/html/HTMLTableRowElement.h" 58 #include "core/html/HTMLTableRowElement.h"
59 #include "core/html/HTMLTableSectionElement.h" 59 #include "core/html/HTMLTableSectionElement.h"
60 #include "core/html/HTMLTextAreaElement.h" 60 #include "core/html/HTMLTextAreaElement.h"
61 #include "core/html/LabelsNodeList.h" 61 #include "core/html/LabelsNodeList.h"
62 #include "core/html/TextControlElement.h" 62 #include "core/html/TextControlElement.h"
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/MediaControlElementTypes.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 "platform/wtf/text/StringBuilder.h" 73 #include "platform/wtf/text/StringBuilder.h"
74 74
75 namespace blink { 75 namespace blink {
(...skipping 3141 matching lines...) Expand 10 before | Expand all | Expand 10 after
3217 return String(); 3217 return String();
3218 return ToTextControlElement(node)->StrippedPlaceholder(); 3218 return ToTextControlElement(node)->StrippedPlaceholder();
3219 } 3219 }
3220 3220
3221 DEFINE_TRACE(AXNodeObject) { 3221 DEFINE_TRACE(AXNodeObject) {
3222 visitor->Trace(node_); 3222 visitor->Trace(node_);
3223 AXObject::Trace(visitor); 3223 AXObject::Trace(visitor);
3224 } 3224 }
3225 3225
3226 } // namespace blink 3226 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698