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

Side by Side Diff: Source/core/inspector/InspectorTraceEvents.cpp

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | « Source/core/html/HTMLOListElement.cpp ('k') | Source/core/layout/LayoutListItem.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/inspector/InspectorTraceEvents.h" 6 #include "core/inspector/InspectorTraceEvents.h"
7 7
8 #include "bindings/core/v8/ScriptCallStackFactory.h" 8 #include "bindings/core/v8/ScriptCallStackFactory.h"
9 #include "bindings/core/v8/ScriptSourceCode.h" 9 #include "bindings/core/v8/ScriptSourceCode.h"
10 #include "core/animation/Animation.h" 10 #include "core/animation/Animation.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 DEFINE_STRING_MAPPING(PseudoReadOnly) 101 DEFINE_STRING_MAPPING(PseudoReadOnly)
102 DEFINE_STRING_MAPPING(PseudoReadWrite) 102 DEFINE_STRING_MAPPING(PseudoReadWrite)
103 DEFINE_STRING_MAPPING(PseudoValid) 103 DEFINE_STRING_MAPPING(PseudoValid)
104 DEFINE_STRING_MAPPING(PseudoInvalid) 104 DEFINE_STRING_MAPPING(PseudoInvalid)
105 DEFINE_STRING_MAPPING(PseudoIndeterminate) 105 DEFINE_STRING_MAPPING(PseudoIndeterminate)
106 DEFINE_STRING_MAPPING(PseudoTarget) 106 DEFINE_STRING_MAPPING(PseudoTarget)
107 DEFINE_STRING_MAPPING(PseudoBefore) 107 DEFINE_STRING_MAPPING(PseudoBefore)
108 DEFINE_STRING_MAPPING(PseudoAfter) 108 DEFINE_STRING_MAPPING(PseudoAfter)
109 DEFINE_STRING_MAPPING(PseudoBackdrop) 109 DEFINE_STRING_MAPPING(PseudoBackdrop)
110 DEFINE_STRING_MAPPING(PseudoLang) 110 DEFINE_STRING_MAPPING(PseudoLang)
111 DEFINE_STRING_MAPPING(PseudoMarker)
111 DEFINE_STRING_MAPPING(PseudoNot) 112 DEFINE_STRING_MAPPING(PseudoNot)
112 DEFINE_STRING_MAPPING(PseudoResizer) 113 DEFINE_STRING_MAPPING(PseudoResizer)
113 DEFINE_STRING_MAPPING(PseudoRoot) 114 DEFINE_STRING_MAPPING(PseudoRoot)
114 DEFINE_STRING_MAPPING(PseudoScope) 115 DEFINE_STRING_MAPPING(PseudoScope)
115 DEFINE_STRING_MAPPING(PseudoScrollbar) 116 DEFINE_STRING_MAPPING(PseudoScrollbar)
116 DEFINE_STRING_MAPPING(PseudoScrollbarButton) 117 DEFINE_STRING_MAPPING(PseudoScrollbarButton)
117 DEFINE_STRING_MAPPING(PseudoScrollbarCorner) 118 DEFINE_STRING_MAPPING(PseudoScrollbarCorner)
118 DEFINE_STRING_MAPPING(PseudoScrollbarThumb) 119 DEFINE_STRING_MAPPING(PseudoScrollbarThumb)
119 DEFINE_STRING_MAPPING(PseudoScrollbarTrack) 120 DEFINE_STRING_MAPPING(PseudoScrollbarTrack)
120 DEFINE_STRING_MAPPING(PseudoScrollbarTrackPiece) 121 DEFINE_STRING_MAPPING(PseudoScrollbarTrackPiece)
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 } 773 }
773 774
774 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorAnimationStateEvent::d ata(const AnimationPlayer& player) 775 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorAnimationStateEvent::d ata(const AnimationPlayer& player)
775 { 776 {
776 RefPtr<TracedValue> value = TracedValue::create(); 777 RefPtr<TracedValue> value = TracedValue::create();
777 value->setString("state", player.playState()); 778 value->setString("state", player.playState());
778 return value.release(); 779 return value.release();
779 } 780 }
780 781
781 } 782 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOListElement.cpp ('k') | Source/core/layout/LayoutListItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698