summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/network/chromium/ResourceResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/network/chromium/ResourceResponse.h')
-rw-r--r--Source/WebCore/platform/network/chromium/ResourceResponse.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/WebCore/platform/network/chromium/ResourceResponse.h b/Source/WebCore/platform/network/chromium/ResourceResponse.h
index 261c5745d..0dd8d6a43 100644
--- a/Source/WebCore/platform/network/chromium/ResourceResponse.h
+++ b/Source/WebCore/platform/network/chromium/ResourceResponse.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
- * Copyright (C) 2008 Google, Inc.
+ * Copyright (C) 2012 Google, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -123,11 +123,6 @@ namespace WebCore {
private:
friend class ResourceResponseBase;
- // An opaque value that contains some information regarding the security of
- // the connection for this request, such as SSL connection info (empty
- // string if not over HTTPS).
- CString m_securityInfo;
-
void doUpdateResourceResponse()
{
notImplemented();
@@ -136,6 +131,11 @@ namespace WebCore {
PassOwnPtr<CrossThreadResourceResponseData> doPlatformCopyData(PassOwnPtr<CrossThreadResourceResponseData>) const;
void doPlatformAdopt(PassOwnPtr<CrossThreadResourceResponseData>);
+ // An opaque value that contains some information regarding the security of
+ // the connection for this request, such as SSL connection info (empty
+ // string if not over HTTPS).
+ CString m_securityInfo;
+
// HTTP version used in the response, if known.
HTTPVersion m_httpVersion;
@@ -181,6 +181,8 @@ namespace WebCore {
};
struct CrossThreadResourceResponseData : public CrossThreadResourceResponseDataBase {
+ CString m_securityInfo;
+ ResourceResponse::HTTPVersion m_httpVersion;
long long m_appCacheID;
KURL m_appCacheManifestURL;
bool m_isMultipartPayload;