| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef LayoutEditor_h | 5 #ifndef LayoutEditor_h |
| 6 #define LayoutEditor_h | 6 #define LayoutEditor_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/css/CSSPrimitiveValue.h" | 10 #include "core/css/CSSPrimitiveValue.h" |
| 11 #include "core/css/CSSRuleList.h" | 11 #include "core/css/CSSRuleList.h" |
| 12 #include "core/dom/Element.h" | 12 #include "core/dom/Element.h" |
| 13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 14 #include "platform/inspector_protocol/Values.h" | 14 #include "platform/inspector_protocol/InspectorProtocol.h" |
| 15 #include "wtf/RefPtr.h" | 15 #include "wtf/RefPtr.h" |
| 16 #include "wtf/text/WTFString.h" | 16 #include "wtf/text/WTFString.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class CSSPrimitiveValue; | 20 class CSSPrimitiveValue; |
| 21 class InspectorCSSAgent; | 21 class InspectorCSSAgent; |
| 22 class InspectorDOMAgent; | 22 class InspectorDOMAgent; |
| 23 class ScriptController; | 23 class ScriptController; |
| 24 | 24 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 HeapVector<Member<CSSStyleDeclaration>> m_matchedStyles; | 66 HeapVector<Member<CSSStyleDeclaration>> m_matchedStyles; |
| 67 HashMap<String, bool> m_growsInside; | 67 HashMap<String, bool> m_growsInside; |
| 68 unsigned m_currentRuleIndex; | 68 unsigned m_currentRuleIndex; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace blink | 71 } // namespace blink |
| 72 | 72 |
| 73 | 73 |
| 74 #endif // !defined(LayoutEditor_h) | 74 #endif // !defined(LayoutEditor_h) |
| OLD | NEW |