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 24 matching lines...) Expand all Loading... |
35 #include "wtf/PassRefPtr.h" | 35 #include "wtf/PassRefPtr.h" |
36 #include "wtf/RefPtr.h" | 36 #include "wtf/RefPtr.h" |
37 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
39 | 39 |
40 class ParsedStyleSheet; | 40 class ParsedStyleSheet; |
41 | 41 |
42 namespace blink { | 42 namespace blink { |
43 | 43 |
44 class CSSMediaRule; | 44 class CSSMediaRule; |
45 class CSSRuleList; | |
46 class CSSStyleDeclaration; | 45 class CSSStyleDeclaration; |
47 class CSSStyleRule; | 46 class CSSStyleRule; |
48 class CSSStyleSheet; | 47 class CSSStyleSheet; |
49 class Document; | 48 class Document; |
50 class Element; | 49 class Element; |
51 class ExceptionState; | 50 class ExceptionState; |
52 class InspectorPageAgent; | 51 class InspectorPageAgent; |
53 class InspectorResourceAgent; | 52 class InspectorResourceAgent; |
54 class InspectorStyleSheetBase; | 53 class InspectorStyleSheetBase; |
55 | 54 |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 mutable String m_styleText; | 300 mutable String m_styleText; |
302 mutable bool m_isStyleTextValid; | 301 mutable bool m_isStyleTextValid; |
303 }; | 302 }; |
304 | 303 |
305 | 304 |
306 } // namespace blink | 305 } // namespace blink |
307 | 306 |
308 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::InspectorStyleProperty); | 307 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::InspectorStyleProperty); |
309 | 308 |
310 #endif // !defined(InspectorStyleSheet_h) | 309 #endif // !defined(InspectorStyleSheet_h) |
OLD | NEW |