Chromium Code Reviews| Index: Source/core/platform/network/chromium/ResourceHandleInternal.h |
| diff --git a/Source/core/platform/network/chromium/ResourceHandleInternal.h b/Source/core/platform/network/chromium/ResourceHandleInternal.h |
| index 6a915516b15dff118f2e0c453dd39cdc7b0a542b..32a951cd8633f8f265453fa28e412fbdf6b50f49 100644 |
| --- a/Source/core/platform/network/chromium/ResourceHandleInternal.h |
| +++ b/Source/core/platform/network/chromium/ResourceHandleInternal.h |
| @@ -32,6 +32,7 @@ |
| #define ResourceHandleInternal_h |
| #include "ResourceRequest.h" |
| +#include "Timer.h" |
| #include <public/WebCommon.h> |
| #include <public/WebURLLoader.h> |
| #include <public/WebURLLoaderClient.h> |
| @@ -85,6 +86,8 @@ public: |
| static ResourceHandleInternal* FromResourceHandle(ResourceHandle*); |
| + void timerFired(Timer<ResourceHandleInternal>*); |
|
abarth-chromium
2013/04/19 16:29:48
Looks like you missed my comment about making this
|
| + |
| private: |
| RefPtr<NetworkingContext> m_context; |
| ResourceRequest m_request; |
| @@ -95,6 +98,8 @@ private: |
| // Used for sanity checking to make sure we don't experience illegal state |
| // transitions. |
| ConnectionState m_state; |
| + |
| + Timer<ResourceHandleInternal> m_timeoutTimer; |
| }; |
| } // namespace WebCore |