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/HashCountedSet.h" | 35 #include "wtf/HashCountedSet.h" |
36 #include "wtf/HashMap.h" | 36 #include "wtf/HashMap.h" |
37 #include "wtf/HashSet.h" | 37 #include "wtf/HashSet.h" |
38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
40 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
41 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
42 | 42 |
43 namespace blink { | 43 namespace blink { |
44 | 44 |
45 struct CSSParserString; | |
46 class CSSRule; | 45 class CSSRule; |
47 class CSSRuleList; | 46 class CSSRuleList; |
48 class CSSStyleRule; | 47 class CSSStyleRule; |
49 class CSSStyleSheet; | 48 class CSSStyleSheet; |
50 class Document; | 49 class Document; |
51 class Element; | 50 class Element; |
52 class InspectorFrontend; | 51 class InspectorFrontend; |
53 class InspectorResourceAgent; | 52 class InspectorResourceAgent; |
54 class InstrumentingAgents; | |
55 class MediaList; | 53 class MediaList; |
56 class Node; | 54 class Node; |
57 class PlatformFontUsage; | |
58 class RenderText; | 55 class RenderText; |
59 class StyleResolver; | |
60 | 56 |
61 class InspectorCSSAgent final | 57 class InspectorCSSAgent final |
62 : public InspectorBaseAgent<InspectorCSSAgent> | 58 : public InspectorBaseAgent<InspectorCSSAgent> |
63 , public InspectorDOMAgent::DOMListener | 59 , public InspectorDOMAgent::DOMListener |
64 , public InspectorBackendDispatcher::CSSCommandHandler | 60 , public InspectorBackendDispatcher::CSSCommandHandler |
65 , public InspectorStyleSheetBase::Listener { | 61 , public InspectorStyleSheetBase::Listener { |
66 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); | 62 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); |
67 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorCSSAgent); | 63 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorCSSAgent); |
68 public: | 64 public: |
69 enum MediaListSource { | 65 enum MediaListSource { |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 bool m_isSettingStyleSheetText; | 215 bool m_isSettingStyleSheetText; |
220 | 216 |
221 friend class InspectorResourceContentLoaderCallback; | 217 friend class InspectorResourceContentLoaderCallback; |
222 friend class StyleSheetBinder; | 218 friend class StyleSheetBinder; |
223 }; | 219 }; |
224 | 220 |
225 | 221 |
226 } // namespace blink | 222 } // namespace blink |
227 | 223 |
228 #endif // !defined(InspectorCSSAgent_h) | 224 #endif // !defined(InspectorCSSAgent_h) |
OLD | NEW |