| 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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #ifndef InspectorCSSAgent_h | 25 #ifndef InspectorCSSAgent_h |
| 26 #define InspectorCSSAgent_h | 26 #define InspectorCSSAgent_h |
| 27 | 27 |
| 28 #include "core/css/CSSSelector.h" | 28 #include "core/css/CSSSelector.h" |
| 29 #include "core/dom/SecurityContext.h" | 29 #include "core/dom/SecurityContext.h" |
| 30 #include "core/inspector/InspectorBaseAgent.h" | 30 #include "core/inspector/InspectorBaseAgent.h" |
| 31 #include "core/inspector/InspectorDOMAgent.h" | 31 #include "core/inspector/InspectorDOMAgent.h" |
| 32 #include "core/inspector/InspectorStyleSheet.h" | 32 #include "core/inspector/InspectorStyleSheet.h" |
| 33 #include "core/page/ContentSecurityPolicy.h" | 33 #include "core/page/ContentSecurityPolicy.h" |
| 34 #include "core/platform/JSONValues.h" | 34 #include "platform/JSONValues.h" |
| 35 #include "wtf/HashMap.h" | 35 #include "wtf/HashMap.h" |
| 36 #include "wtf/HashSet.h" | 36 #include "wtf/HashSet.h" |
| 37 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 38 #include "wtf/RefPtr.h" | 38 #include "wtf/RefPtr.h" |
| 39 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace WebCore { | 42 namespace WebCore { |
| 43 | 43 |
| 44 class ChangeRegionOversetTask; | 44 class ChangeRegionOversetTask; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 friend class ChangeRegionOversetTask; | 219 friend class ChangeRegionOversetTask; |
| 220 friend class EnableResourceClient; | 220 friend class EnableResourceClient; |
| 221 friend class StyleSheetBinder; | 221 friend class StyleSheetBinder; |
| 222 friend class UpdateRegionLayoutTask; | 222 friend class UpdateRegionLayoutTask; |
| 223 }; | 223 }; |
| 224 | 224 |
| 225 | 225 |
| 226 } // namespace WebCore | 226 } // namespace WebCore |
| 227 | 227 |
| 228 #endif // !defined(InspectorCSSAgent_h) | 228 #endif // !defined(InspectorCSSAgent_h) |
| OLD | NEW |