| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 class InspectorFrontend; | 53 class InspectorFrontend; |
| 54 class InstrumentingAgents; | 54 class InstrumentingAgents; |
| 55 class NameNodeMap; | 55 class NameNodeMap; |
| 56 class Node; | 56 class Node; |
| 57 class NodeList; | 57 class NodeList; |
| 58 class SelectorProfile; | 58 class SelectorProfile; |
| 59 class StyleResolver; | 59 class StyleResolver; |
| 60 class StyleRule; | 60 class StyleRule; |
| 61 class UpdateRegionLayoutTask; | 61 class UpdateRegionLayoutTask; |
| 62 | 62 |
| 63 #if ENABLE(INSPECTOR) | |
| 64 | 63 |
| 65 class InspectorCSSAgent | 64 class InspectorCSSAgent |
| 66 : public InspectorBaseAgent<InspectorCSSAgent> | 65 : public InspectorBaseAgent<InspectorCSSAgent> |
| 67 , public InspectorDOMAgent::DOMListener | 66 , public InspectorDOMAgent::DOMListener |
| 68 , public InspectorBackendDispatcher::CSSCommandHandler | 67 , public InspectorBackendDispatcher::CSSCommandHandler |
| 69 , public InspectorStyleSheet::Listener { | 68 , public InspectorStyleSheet::Listener { |
| 70 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); | 69 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); |
| 71 public: | 70 public: |
| 72 class InlineStyleOverrideScope { | 71 class InlineStyleOverrideScope { |
| 73 public: | 72 public: |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 DocumentToViaInspectorStyleSheet m_documentToInspectorStyleSheet; | 184 DocumentToViaInspectorStyleSheet m_documentToInspectorStyleSheet; |
| 186 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState; | 185 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState; |
| 187 HashSet<int> m_namedFlowCollectionsRequested; | 186 HashSet<int> m_namedFlowCollectionsRequested; |
| 188 OwnPtr<UpdateRegionLayoutTask> m_updateRegionLayoutTask; | 187 OwnPtr<UpdateRegionLayoutTask> m_updateRegionLayoutTask; |
| 189 | 188 |
| 190 int m_lastStyleSheetId; | 189 int m_lastStyleSheetId; |
| 191 | 190 |
| 192 OwnPtr<SelectorProfile> m_currentSelectorProfile; | 191 OwnPtr<SelectorProfile> m_currentSelectorProfile; |
| 193 }; | 192 }; |
| 194 | 193 |
| 195 #endif | |
| 196 | 194 |
| 197 } // namespace WebCore | 195 } // namespace WebCore |
| 198 | 196 |
| 199 #endif // !defined(InspectorCSSAgent_h) | 197 #endif // !defined(InspectorCSSAgent_h) |
| OLD | NEW |