| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple 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 18 matching lines...) Expand all Loading... |
| 29 #include "InspectorFrontend.h" | 29 #include "InspectorFrontend.h" |
| 30 #include "core/inspector/InspectorBaseAgent.h" | 30 #include "core/inspector/InspectorBaseAgent.h" |
| 31 #include "core/loader/appcache/ApplicationCacheHost.h" | 31 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 32 #include <wtf/Noncopyable.h> | 32 #include <wtf/Noncopyable.h> |
| 33 #include <wtf/PassOwnPtr.h> | 33 #include <wtf/PassOwnPtr.h> |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 class Frame; | 37 class Frame; |
| 38 class InspectorArray; | 38 class InspectorArray; |
| 39 class InspectorAgent; | |
| 40 class InspectorFrontend; | 39 class InspectorFrontend; |
| 41 class InspectorObject; | 40 class InspectorObject; |
| 42 class InspectorPageAgent; | 41 class InspectorPageAgent; |
| 43 class InspectorValue; | 42 class InspectorValue; |
| 44 class InspectorState; | 43 class InspectorState; |
| 45 class InstrumentingAgents; | 44 class InstrumentingAgents; |
| 46 class Page; | 45 class Page; |
| 47 class ResourceResponse; | 46 class ResourceResponse; |
| 48 | 47 |
| 49 typedef String ErrorString; | 48 typedef String ErrorString; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 80 | 79 |
| 81 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId); | 80 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId); |
| 82 | 81 |
| 83 InspectorPageAgent* m_pageAgent; | 82 InspectorPageAgent* m_pageAgent; |
| 84 InspectorFrontend::ApplicationCache* m_frontend; | 83 InspectorFrontend::ApplicationCache* m_frontend; |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 } // namespace WebCore | 86 } // namespace WebCore |
| 88 | 87 |
| 89 #endif // InspectorApplicationCacheAgent_h | 88 #endif // InspectorApplicationCacheAgent_h |
| OLD | NEW |