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

Side by Side Diff: third_party/WebKit/Source/core/inspector/LayoutEditor.h

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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 // 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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698