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 11 matching lines...) Expand all Loading... |
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 */ | 23 */ |
24 | 24 |
25 #ifndef InspectorCSSAgent_h | 25 #ifndef InspectorCSSAgent_h |
26 #define InspectorCSSAgent_h | 26 #define InspectorCSSAgent_h |
27 | 27 |
28 #include "InspectorBaseAgent.h" | 28 #include "InspectorBaseAgent.h" |
29 #include "InspectorDOMAgent.h" | 29 #include "InspectorDOMAgent.h" |
30 #include "InspectorStyleSheet.h" | 30 #include "InspectorStyleSheet.h" |
31 #include "InspectorValues.h" | 31 #include "InspectorValues.h" |
32 #include "SecurityContext.h" | |
33 #include "core/css/CSSSelector.h" | 32 #include "core/css/CSSSelector.h" |
| 33 #include "core/dom/SecurityContext.h" |
34 #include "core/page/ContentSecurityPolicy.h" | 34 #include "core/page/ContentSecurityPolicy.h" |
35 | 35 |
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/text/WTFString.h> | 40 #include <wtf/text/WTFString.h> |
41 #include <wtf/Vector.h> | 41 #include <wtf/Vector.h> |
42 | 42 |
43 namespace WebCore { | 43 namespace WebCore { |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 | 198 |
199 OwnPtr<SelectorProfile> m_currentSelectorProfile; | 199 OwnPtr<SelectorProfile> m_currentSelectorProfile; |
200 | 200 |
201 friend class StyleSheetBinder; | 201 friend class StyleSheetBinder; |
202 }; | 202 }; |
203 | 203 |
204 | 204 |
205 } // namespace WebCore | 205 } // namespace WebCore |
206 | 206 |
207 #endif // !defined(InspectorCSSAgent_h) | 207 #endif // !defined(InspectorCSSAgent_h) |
OLD | NEW |