| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "core/inspector/InspectorValues.h" | 43 #include "core/inspector/InspectorValues.h" |
| 44 #include "core/inspector/InstrumentingAgents.h" | 44 #include "core/inspector/InstrumentingAgents.h" |
| 45 #include "core/inspector/NetworkResourcesData.h" | 45 #include "core/inspector/NetworkResourcesData.h" |
| 46 #include "core/inspector/ScriptCallStack.h" | 46 #include "core/inspector/ScriptCallStack.h" |
| 47 #include "core/loader/DocumentLoader.h" | 47 #include "core/loader/DocumentLoader.h" |
| 48 #include "core/loader/FrameLoader.h" | 48 #include "core/loader/FrameLoader.h" |
| 49 #include "core/loader/ResourceLoader.h" | 49 #include "core/loader/ResourceLoader.h" |
| 50 #include "core/loader/UniqueIdentifier.h" | 50 #include "core/loader/UniqueIdentifier.h" |
| 51 #include "core/loader/cache/CachedRawResource.h" | 51 #include "core/loader/cache/CachedRawResource.h" |
| 52 #include "core/loader/cache/CachedResource.h" | 52 #include "core/loader/cache/CachedResource.h" |
| 53 #include "core/loader/cache/CachedResourceLoader.h" | |
| 54 #include "core/loader/cache/MemoryCache.h" | 53 #include "core/loader/cache/MemoryCache.h" |
| 55 #include "core/page/Frame.h" | 54 #include "core/page/Frame.h" |
| 56 #include "core/page/Page.h" | |
| 57 #include "core/platform/KURL.h" | |
| 58 #include "core/platform/network/HTTPHeaderMap.h" | 55 #include "core/platform/network/HTTPHeaderMap.h" |
| 59 #include "core/platform/network/ResourceError.h" | 56 #include "core/platform/network/ResourceError.h" |
| 60 #include "core/platform/network/ResourceRequest.h" | 57 #include "core/platform/network/ResourceRequest.h" |
| 61 #include "core/platform/network/ResourceResponse.h" | 58 #include "core/platform/network/ResourceResponse.h" |
| 62 #include "core/xml/XMLHttpRequest.h" | 59 #include "core/xml/XMLHttpRequest.h" |
| 63 #include "modules/websockets/WebSocketFrame.h" | 60 #include "modules/websockets/WebSocketFrame.h" |
| 64 #include "modules/websockets/WebSocketHandshakeRequest.h" | 61 #include "modules/websockets/WebSocketHandshakeRequest.h" |
| 65 #include "modules/websockets/WebSocketHandshakeResponse.h" | 62 #include "modules/websockets/WebSocketHandshakeResponse.h" |
| 66 #include <wtf/CurrentTime.h> | 63 #include <wtf/CurrentTime.h> |
| 67 #include <wtf/HexNumber.h> | 64 #include <wtf/HexNumber.h> |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 , m_client(client) | 662 , m_client(client) |
| 666 , m_frontend(0) | 663 , m_frontend(0) |
| 667 , m_resourcesData(adoptPtr(new NetworkResourcesData())) | 664 , m_resourcesData(adoptPtr(new NetworkResourcesData())) |
| 668 , m_loadingXHRSynchronously(false) | 665 , m_loadingXHRSynchronously(false) |
| 669 , m_isRecalculatingStyle(false) | 666 , m_isRecalculatingStyle(false) |
| 670 { | 667 { |
| 671 } | 668 } |
| 672 | 669 |
| 673 } // namespace WebCore | 670 } // namespace WebCore |
| 674 | 671 |
| OLD | NEW |