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

Side by Side Diff: Source/core/loader/DocumentLoader.h

Issue 17569013: Remove unused includes from core/inspector, core/loader and core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 6 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) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 24 matching lines...) Expand all
35 #include "core/loader/NavigationAction.h" 35 #include "core/loader/NavigationAction.h"
36 #include "core/loader/ResourceLoaderOptions.h" 36 #include "core/loader/ResourceLoaderOptions.h"
37 #include "core/loader/SubstituteData.h" 37 #include "core/loader/SubstituteData.h"
38 #include "core/loader/cache/CachedRawResource.h" 38 #include "core/loader/cache/CachedRawResource.h"
39 #include "core/loader/cache/CachedResourceHandle.h" 39 #include "core/loader/cache/CachedResourceHandle.h"
40 #include "core/platform/Timer.h" 40 #include "core/platform/Timer.h"
41 #include "core/platform/network/ResourceError.h" 41 #include "core/platform/network/ResourceError.h"
42 #include "core/platform/network/ResourceRequest.h" 42 #include "core/platform/network/ResourceRequest.h"
43 #include "core/platform/network/ResourceResponse.h" 43 #include "core/platform/network/ResourceResponse.h"
44 #include "core/platform/text/StringWithDirection.h" 44 #include "core/platform/text/StringWithDirection.h"
45 #include <wtf/HashSet.h> 45 #include "wtf/HashSet.h"
46 #include <wtf/RefPtr.h> 46 #include "wtf/RefPtr.h"
47 #include <wtf/Vector.h>
48 47
49 namespace WTF { 48 namespace WTF {
50 class SchedulePair; 49 class SchedulePair;
51 } 50 }
52 51
53 namespace WebCore { 52 namespace WebCore {
54 class ApplicationCacheHost; 53 class ApplicationCacheHost;
55 class ArchiveResource; 54 class ArchiveResource;
56 class ArchiveResourceCollection; 55 class ArchiveResourceCollection;
57 class CachedResourceLoader; 56 class CachedResourceLoader;
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 unsigned long m_identifierForLoadWithoutResourceLoader; 266 unsigned long m_identifierForLoadWithoutResourceLoader;
268 267
269 DocumentLoaderTimer m_dataLoadTimer; 268 DocumentLoaderTimer m_dataLoadTimer;
270 269
271 friend class ApplicationCacheHost; // for substitute resource delivery 270 friend class ApplicationCacheHost; // for substitute resource delivery
272 OwnPtr<ApplicationCacheHost> m_applicationCacheHost; 271 OwnPtr<ApplicationCacheHost> m_applicationCacheHost;
273 }; 272 };
274 } 273 }
275 274
276 #endif // DocumentLoader_h 275 #endif // DocumentLoader_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698