diff options
Diffstat (limited to 'WebKit')
-rw-r--r-- | WebKit/android/WebCoreSupport/WebRequestContext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebKit/android/WebCoreSupport/WebRequestContext.h b/WebKit/android/WebCoreSupport/WebRequestContext.h index c2f0aaf..0ff081c 100644 --- a/WebKit/android/WebCoreSupport/WebRequestContext.h +++ b/WebKit/android/WebCoreSupport/WebRequestContext.h @@ -26,6 +26,11 @@ #ifndef WebRequestContext_h #define WebRequestContext_h +// libchromium_net is not available on the simulator for now +// Cannot forward declare the chrome classes since this is +// a subclass of a chrome class. +#if USE(CHROME_NETWORK_STACK) + #include "net/http/http_cache.h" #include "net/url_request/url_request_context.h" @@ -46,4 +51,6 @@ private: } // namespace android +#endif // USE(CHROME_NETWORK_STACK) + #endif |