| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class CSSRuleList; | 46 class CSSRuleList; |
| 47 class CSSStyleDeclaration; | 47 class CSSStyleDeclaration; |
| 48 class CSSStyleRule; | 48 class CSSStyleRule; |
| 49 class CSSStyleSheet; | 49 class CSSStyleSheet; |
| 50 class Document; | 50 class Document; |
| 51 class Element; | 51 class Element; |
| 52 class InspectorPageAgent; | 52 class InspectorPageAgent; |
| 53 class InspectorStyleSheet; | 53 class InspectorStyleSheet; |
| 54 class Node; | 54 class Node; |
| 55 | 55 |
| 56 #if ENABLE(INSPECTOR) | |
| 57 | 56 |
| 58 typedef String ErrorString; | 57 typedef String ErrorString; |
| 59 | 58 |
| 60 class InspectorCSSId { | 59 class InspectorCSSId { |
| 61 public: | 60 public: |
| 62 InspectorCSSId() | 61 InspectorCSSId() |
| 63 : m_ordinal(0) | 62 : m_ordinal(0) |
| 64 { | 63 { |
| 65 } | 64 } |
| 66 | 65 |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 281 |
| 283 RefPtr<Element> m_element; | 282 RefPtr<Element> m_element; |
| 284 RefPtr<CSSRuleSourceData> m_ruleSourceData; | 283 RefPtr<CSSRuleSourceData> m_ruleSourceData; |
| 285 RefPtr<InspectorStyle> m_inspectorStyle; | 284 RefPtr<InspectorStyle> m_inspectorStyle; |
| 286 | 285 |
| 287 // Contains "style" attribute value. | 286 // Contains "style" attribute value. |
| 288 mutable String m_styleText; | 287 mutable String m_styleText; |
| 289 mutable bool m_isStyleTextValid; | 288 mutable bool m_isStyleTextValid; |
| 290 }; | 289 }; |
| 291 | 290 |
| 292 #endif | |
| 293 | 291 |
| 294 } // namespace WebCore | 292 } // namespace WebCore |
| 295 | 293 |
| 296 #endif // !defined(InspectorStyleSheet_h) | 294 #endif // !defined(InspectorStyleSheet_h) |
| OLD | NEW |