| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/page/Frame.h" | 37 #include "core/page/Frame.h" |
| 38 #include "core/page/Page.h" | 38 #include "core/page/Page.h" |
| 39 #include "core/page/PageSerializer.h" | 39 #include "core/page/PageSerializer.h" |
| 40 #include "core/platform/MIMETypeRegistry.h" | 40 #include "core/platform/MIMETypeRegistry.h" |
| 41 #include "core/platform/SharedBuffer.h" | 41 #include "core/platform/SharedBuffer.h" |
| 42 #include "core/platform/text/QuotedPrintable.h" | 42 #include "core/platform/text/QuotedPrintable.h" |
| 43 #include "weborigin/SchemeRegistry.h" | 43 #include "weborigin/SchemeRegistry.h" |
| 44 #include "wtf/CryptographicallyRandomNumber.h" | 44 #include "wtf/CryptographicallyRandomNumber.h" |
| 45 #include "wtf/DateMath.h" | 45 #include "wtf/DateMath.h" |
| 46 #include "wtf/GregorianDateTime.h" | 46 #include "wtf/GregorianDateTime.h" |
| 47 #include "wtf/StdLibExtras.h" | |
| 48 #include "wtf/text/Base64.h" | 47 #include "wtf/text/Base64.h" |
| 49 #include "wtf/text/StringBuilder.h" | 48 #include "wtf/text/StringBuilder.h" |
| 50 | 49 |
| 51 namespace WebCore { | 50 namespace WebCore { |
| 52 | 51 |
| 53 const char* const quotedPrintable = "quoted-printable"; | 52 const char* const quotedPrintable = "quoted-printable"; |
| 54 const char* const base64 = "base64"; | 53 const char* const base64 = "base64"; |
| 55 const char* const binary = "binary"; | 54 const char* const binary = "binary"; |
| 56 | 55 |
| 57 static String generateRandomBoundary() | 56 static String generateRandomBoundary() |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 for (Vector<RefPtr<MHTMLArchive> >::iterator it = m_subframeArchives.begin()
; it != m_subframeArchives.end(); ++it) { | 243 for (Vector<RefPtr<MHTMLArchive> >::iterator it = m_subframeArchives.begin()
; it != m_subframeArchives.end(); ++it) { |
| 245 if (!clearedArchives->contains(*it)) { | 244 if (!clearedArchives->contains(*it)) { |
| 246 clearedArchives->append(*it); | 245 clearedArchives->append(*it); |
| 247 (*it)->clearAllSubframeArchivesImpl(clearedArchives); | 246 (*it)->clearAllSubframeArchivesImpl(clearedArchives); |
| 248 } | 247 } |
| 249 } | 248 } |
| 250 m_subframeArchives.clear(); | 249 m_subframeArchives.clear(); |
| 251 } | 250 } |
| 252 | 251 |
| 253 } | 252 } |
| OLD | NEW |