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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 class CSSStyleSheet; | 49 class CSSStyleSheet; |
50 class Document; | 50 class Document; |
51 class Element; | 51 class Element; |
52 class InspectorFrontend; | 52 class InspectorFrontend; |
53 class InspectorResourceAgent; | 53 class InspectorResourceAgent; |
54 class InstrumentingAgents; | 54 class InstrumentingAgents; |
55 class MediaList; | 55 class MediaList; |
56 class Node; | 56 class Node; |
57 class NodeList; | 57 class NodeList; |
58 class PlatformFontUsage; | 58 class PlatformFontUsage; |
| 59 class RenderText; |
59 class StyleResolver; | 60 class StyleResolver; |
60 class UpdateRegionLayoutTask; | 61 class UpdateRegionLayoutTask; |
61 | 62 |
62 typedef HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > CSSStyleSheetToIns
pectorStyleSheet; | 63 typedef HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > CSSStyleSheetToIns
pectorStyleSheet; |
63 typedef Vector<RefPtr<StyleSheet> > StyleSheetVector; | 64 typedef Vector<RefPtr<StyleSheet> > StyleSheetVector; |
64 | 65 |
65 class InspectorCSSAgent | 66 class InspectorCSSAgent |
66 : public InspectorBaseAgent<InspectorCSSAgent> | 67 : public InspectorBaseAgent<InspectorCSSAgent> |
67 , public InspectorDOMAgent::DOMListener | 68 , public InspectorDOMAgent::DOMListener |
68 , public InspectorBackendDispatcher::CSSCommandHandler | 69 , public InspectorBackendDispatcher::CSSCommandHandler |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 friend class ChangeRegionOversetTask; | 226 friend class ChangeRegionOversetTask; |
226 friend class EnableResourceClient; | 227 friend class EnableResourceClient; |
227 friend class StyleSheetBinder; | 228 friend class StyleSheetBinder; |
228 friend class UpdateRegionLayoutTask; | 229 friend class UpdateRegionLayoutTask; |
229 }; | 230 }; |
230 | 231 |
231 | 232 |
232 } // namespace WebCore | 233 } // namespace WebCore |
233 | 234 |
234 #endif // !defined(InspectorCSSAgent_h) | 235 #endif // !defined(InspectorCSSAgent_h) |
OLD | NEW |