| 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 14 matching lines...) Expand all Loading... |
| 25 #ifndef InspectorStyleSheet_h | 25 #ifndef InspectorStyleSheet_h |
| 26 #define InspectorStyleSheet_h | 26 #define InspectorStyleSheet_h |
| 27 | 27 |
| 28 #include "InspectorTypeBuilder.h" | 28 #include "InspectorTypeBuilder.h" |
| 29 #include "core/css/CSSPropertySourceData.h" | 29 #include "core/css/CSSPropertySourceData.h" |
| 30 #include "core/css/CSSStyleDeclaration.h" | 30 #include "core/css/CSSStyleDeclaration.h" |
| 31 #include "core/dom/ExceptionCode.h" | 31 #include "core/dom/ExceptionCode.h" |
| 32 #include "core/inspector/InspectorStyleTextEditor.h" | 32 #include "core/inspector/InspectorStyleTextEditor.h" |
| 33 #include "core/platform/JSONValues.h" | 33 #include "core/platform/JSONValues.h" |
| 34 #include "wtf/HashMap.h" | 34 #include "wtf/HashMap.h" |
| 35 #include "wtf/HashSet.h" | |
| 36 #include "wtf/PassRefPtr.h" | 35 #include "wtf/PassRefPtr.h" |
| 37 #include "wtf/RefPtr.h" | 36 #include "wtf/RefPtr.h" |
| 38 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
| 39 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 40 | 39 |
| 41 class ParsedStyleSheet; | 40 class ParsedStyleSheet; |
| 42 | 41 |
| 43 namespace WebCore { | 42 namespace WebCore { |
| 44 | 43 |
| 45 class CSSRuleList; | 44 class CSSRuleList; |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 288 |
| 290 // Contains "style" attribute value. | 289 // Contains "style" attribute value. |
| 291 mutable String m_styleText; | 290 mutable String m_styleText; |
| 292 mutable bool m_isStyleTextValid; | 291 mutable bool m_isStyleTextValid; |
| 293 }; | 292 }; |
| 294 | 293 |
| 295 | 294 |
| 296 } // namespace WebCore | 295 } // namespace WebCore |
| 297 | 296 |
| 298 #endif // !defined(InspectorStyleSheet_h) | 297 #endif // !defined(InspectorStyleSheet_h) |
| OLD | NEW |