| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "wtf/text/WTFString.h" | 37 #include "wtf/text/WTFString.h" |
| 38 #include <memory> | 38 #include <memory> |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class CSSKeyframeRule; | 42 class CSSKeyframeRule; |
| 43 class CSSMediaRule; | 43 class CSSMediaRule; |
| 44 class CSSStyleDeclaration; | 44 class CSSStyleDeclaration; |
| 45 class CSSStyleRule; | 45 class CSSStyleRule; |
| 46 class CSSStyleSheet; | 46 class CSSStyleSheet; |
| 47 class Document; | |
| 48 class Element; | 47 class Element; |
| 49 class ExceptionState; | 48 class ExceptionState; |
| 50 class InspectorNetworkAgent; | 49 class InspectorNetworkAgent; |
| 51 class InspectorResourceContainer; | 50 class InspectorResourceContainer; |
| 52 class InspectorStyleSheetBase; | 51 class InspectorStyleSheetBase; |
| 53 | 52 |
| 54 typedef HeapVector<Member<CSSRule>> CSSRuleVector; | 53 typedef HeapVector<Member<CSSRule>> CSSRuleVector; |
| 55 typedef Vector<unsigned> LineEndings; | 54 typedef Vector<unsigned> LineEndings; |
| 56 | 55 |
| 57 class InspectorStyle final : public GarbageCollectedFinalized<InspectorStyle> { | 56 class InspectorStyle final : public GarbageCollectedFinalized<InspectorStyle> { |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 InspectorStyleSheetForInlineStyle(Element*, Listener*); | 272 InspectorStyleSheetForInlineStyle(Element*, Listener*); |
| 274 const String& elementStyleText(); | 273 const String& elementStyleText(); |
| 275 | 274 |
| 276 Member<Element> m_element; | 275 Member<Element> m_element; |
| 277 Member<InspectorStyle> m_inspectorStyle; | 276 Member<InspectorStyle> m_inspectorStyle; |
| 278 }; | 277 }; |
| 279 | 278 |
| 280 } // namespace blink | 279 } // namespace blink |
| 281 | 280 |
| 282 #endif // !defined(InspectorStyleSheet_h) | 281 #endif // !defined(InspectorStyleSheet_h) |
| OLD | NEW |