Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: Source/core/loader/archive/MHTMLArchive.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/loader/appcache/DOMApplicationCache.cpp ('k') | Source/core/loader/cache/CachedCSSStyleSheet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698