| 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 15 matching lines...) Expand all Loading... |
| 26 #define InspectorCSSAgent_h | 26 #define InspectorCSSAgent_h |
| 27 | 27 |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/css/CSSSelector.h" | 29 #include "core/css/CSSSelector.h" |
| 30 #include "core/dom/SecurityContext.h" | 30 #include "core/dom/SecurityContext.h" |
| 31 #include "core/frame/csp/ContentSecurityPolicy.h" | 31 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 32 #include "core/inspector/InspectorBaseAgent.h" | 32 #include "core/inspector/InspectorBaseAgent.h" |
| 33 #include "core/inspector/InspectorDOMAgent.h" | 33 #include "core/inspector/InspectorDOMAgent.h" |
| 34 #include "core/inspector/InspectorStyleSheet.h" | 34 #include "core/inspector/InspectorStyleSheet.h" |
| 35 #include "core/inspector/protocol/CSS.h" | 35 #include "core/inspector/protocol/CSS.h" |
| 36 #include "platform/inspector_protocol/Values.h" | |
| 37 #include "wtf/HashCountedSet.h" | 36 #include "wtf/HashCountedSet.h" |
| 38 #include "wtf/HashMap.h" | 37 #include "wtf/HashMap.h" |
| 39 #include "wtf/HashSet.h" | 38 #include "wtf/HashSet.h" |
| 40 #include "wtf/PassRefPtr.h" | 39 #include "wtf/PassRefPtr.h" |
| 41 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
| 42 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 43 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| (...skipping 183 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 |