| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 #include "core/InspectorFrontend.h" | 35 #include "core/InspectorFrontend.h" |
| 36 #include "core/inspector/InspectorBaseAgent.h" | 36 #include "core/inspector/InspectorBaseAgent.h" |
| 37 #include "core/inspector/InspectorResourceContentLoader.h" | 37 #include "core/inspector/InspectorResourceContentLoader.h" |
| 38 #include "wtf/HashMap.h" | 38 #include "wtf/HashMap.h" |
| 39 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class Resource; | 43 class Resource; |
| 44 class DOMWrapperWorld; | |
| 45 class Document; | 44 class Document; |
| 46 class DocumentLoader; | 45 class DocumentLoader; |
| 47 class LocalFrame; | 46 class LocalFrame; |
| 48 class GraphicsContext; | 47 class GraphicsContext; |
| 49 class GraphicsLayer; | 48 class GraphicsLayer; |
| 50 class InjectedScriptManager; | 49 class InjectedScriptManager; |
| 51 class InspectorClient; | 50 class InspectorClient; |
| 52 class InspectorOverlay; | 51 class InspectorOverlay; |
| 53 class InspectorResourceContentLoader; | 52 class InspectorResourceContentLoader; |
| 54 class InstrumentingAgents; | |
| 55 class IntSize; | |
| 56 class KURL; | 53 class KURL; |
| 57 class LayoutRect; | 54 class LayoutRect; |
| 58 class Page; | 55 class Page; |
| 59 class RenderObject; | 56 class RenderObject; |
| 60 class SharedBuffer; | 57 class SharedBuffer; |
| 61 class StyleResolver; | 58 class StyleResolver; |
| 62 class TextResourceDecoder; | 59 class TextResourceDecoder; |
| 63 | 60 |
| 64 typedef String ErrorString; | 61 typedef String ErrorString; |
| 65 | 62 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 224 |
| 228 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten
tLoader; | 225 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten
tLoader; |
| 229 HashMap<String, String> m_editedResourceContent; | 226 HashMap<String, String> m_editedResourceContent; |
| 230 }; | 227 }; |
| 231 | 228 |
| 232 | 229 |
| 233 } // namespace blink | 230 } // namespace blink |
| 234 | 231 |
| 235 | 232 |
| 236 #endif // !defined(InspectorPagerAgent_h) | 233 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |