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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 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 | Annotate | Revision Log
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 19 matching lines...) Expand all
30 #ifndef DocumentLoader_h 30 #ifndef DocumentLoader_h
31 #define DocumentLoader_h 31 #define DocumentLoader_h
32 32
33 #include "CachedRawResource.h" 33 #include "CachedRawResource.h"
34 #include "CachedResourceHandle.h" 34 #include "CachedResourceHandle.h"
35 #include "DocumentLoadTiming.h" 35 #include "DocumentLoadTiming.h"
36 #include "DocumentWriter.h" 36 #include "DocumentWriter.h"
37 #include "NavigationAction.h" 37 #include "NavigationAction.h"
38 #include "ResourceLoaderOptions.h" 38 #include "ResourceLoaderOptions.h"
39 #include "SubstituteData.h" 39 #include "SubstituteData.h"
40 #include "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> 47 #include <wtf/Vector.h>
48 48
49 namespace WTF { 49 namespace WTF {
50 class SchedulePair; 50 class SchedulePair;
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 314
315 inline void DocumentLoader::takeMemoryCacheLoadsForClientNotification(Vector <String>& loadsSet) 315 inline void DocumentLoader::takeMemoryCacheLoadsForClientNotification(Vector <String>& loadsSet)
316 { 316 {
317 loadsSet.swap(m_resourcesLoadedFromMemoryCacheForClientNotification); 317 loadsSet.swap(m_resourcesLoadedFromMemoryCacheForClientNotification);
318 m_resourcesLoadedFromMemoryCacheForClientNotification.clear(); 318 m_resourcesLoadedFromMemoryCacheForClientNotification.clear();
319 } 319 }
320 320
321 } 321 }
322 322
323 #endif // DocumentLoader_h 323 #endif // DocumentLoader_h
OLDNEW
« no previous file with comments | « Source/core/loader/CrossOriginPreflightResultCache.h ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698