Index: content/public/renderer/history_item_serialization.cc |
diff --git a/content/public/renderer/history_item_serialization.cc b/content/public/renderer/history_item_serialization.cc |
index d011fd2e8f916863a4146cbf4dc57e6f3d234d3c..6bef7de3f3c392fa8bb50f6ab5791e21e253e6fb 100644 |
--- a/content/public/renderer/history_item_serialization.cc |
+++ b/content/public/renderer/history_item_serialization.cc |
@@ -48,11 +48,7 @@ void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input, |
output->file_modification_time = input.modificationTime; |
break; |
case WebHTTPBody::Element::TypeBlob: |
-#ifdef USE_BLOB_UUIDS |
output->blob_uuid = input.blobUUID.utf8(); |
-#else |
- output->deprecated_blob_url = input.blobURL; |
-#endif |
break; |
} |
} |
@@ -78,11 +74,7 @@ void AppendHTTPBodyElement(const ExplodedHttpBodyElement& element, |
element.file_modification_time); |
break; |
case WebHTTPBody::Element::TypeBlob: |
-#ifdef USE_BLOB_UUIDS |
http_body->appendBlob(WebString::fromUTF8(element.blob_uuid)); |
-#else |
- http_body->appendBlob(element.deprecated_blob_url); |
-#endif |
break; |
} |
} |