| 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 InspectedFrames; | 53 class InspectedFrames; |
| 54 class InspectorFrontend; | 54 class InspectorFrontend; |
| 55 class InspectorResourceAgent; | 55 class InspectorResourceAgent; |
| 56 class InspectorResourceContainer; | 56 class InspectorResourceContainer; |
| 57 class InspectorResourceContentLoader; | 57 class InspectorResourceContentLoader; |
| 58 class MediaList; | 58 class MediaList; |
| 59 class Node; | 59 class Node; |
| 60 class LayoutObject; | 60 class LayoutObject; |
| 61 | 61 |
| 62 class CORE_EXPORT InspectorCSSAgent final | 62 class CORE_EXPORT InspectorCSSAgent final |
| 63 : public InspectorBaseAgent<InspectorCSSAgent, protocol::CSS::Frontend> | 63 : public InspectorBaseAgent<protocol::CSS::Metainfo> |
| 64 , public InspectorDOMAgent::DOMListener | 64 , public InspectorDOMAgent::DOMListener |
| 65 , public protocol::CSS::Backend | |
| 66 , public InspectorStyleSheetBase::Listener { | 65 , public InspectorStyleSheetBase::Listener { |
| 67 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); | 66 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); |
| 68 USING_GARBAGE_COLLECTED_MIXIN(InspectorCSSAgent); | 67 USING_GARBAGE_COLLECTED_MIXIN(InspectorCSSAgent); |
| 69 public: | 68 public: |
| 70 enum MediaListSource { | 69 enum MediaListSource { |
| 71 MediaListSourceLinkedSheet, | 70 MediaListSourceLinkedSheet, |
| 72 MediaListSourceInlineSheet, | 71 MediaListSourceInlineSheet, |
| 73 MediaListSourceMediaRule, | 72 MediaListSourceMediaRule, |
| 74 MediaListSourceImportRule | 73 MediaListSourceImportRule |
| 75 }; | 74 }; |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 int m_resourceContentLoaderClientId; | 229 int m_resourceContentLoaderClientId; |
| 231 | 230 |
| 232 friend class InspectorResourceContentLoaderCallback; | 231 friend class InspectorResourceContentLoaderCallback; |
| 233 friend class StyleSheetBinder; | 232 friend class StyleSheetBinder; |
| 234 }; | 233 }; |
| 235 | 234 |
| 236 | 235 |
| 237 } // namespace blink | 236 } // namespace blink |
| 238 | 237 |
| 239 #endif // !defined(InspectorCSSAgent_h) | 238 #endif // !defined(InspectorCSSAgent_h) |
| OLD | NEW |