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

Side by Side Diff: Source/core/fetch/ResourceFetcher.cpp

Issue 909013008: Move SubstituteData and UniqueIdentifier to core/fetch/ from core/loader/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « Source/core/fetch/ImageResourceTest.cpp ('k') | Source/core/fetch/SubstituteData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org)
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org)
5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
7 7
8 This library is free software; you can redistribute it and/or 8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public 9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation; either 10 License as published by the Free Software Foundation; either
(...skipping 24 matching lines...) Expand all
35 #include "core/fetch/CrossOriginAccessControl.h" 35 #include "core/fetch/CrossOriginAccessControl.h"
36 #include "core/fetch/DocumentResource.h" 36 #include "core/fetch/DocumentResource.h"
37 #include "core/fetch/FetchContext.h" 37 #include "core/fetch/FetchContext.h"
38 #include "core/fetch/FontResource.h" 38 #include "core/fetch/FontResource.h"
39 #include "core/fetch/ImageResource.h" 39 #include "core/fetch/ImageResource.h"
40 #include "core/fetch/MemoryCache.h" 40 #include "core/fetch/MemoryCache.h"
41 #include "core/fetch/RawResource.h" 41 #include "core/fetch/RawResource.h"
42 #include "core/fetch/ResourceLoader.h" 42 #include "core/fetch/ResourceLoader.h"
43 #include "core/fetch/ResourceLoaderSet.h" 43 #include "core/fetch/ResourceLoaderSet.h"
44 #include "core/fetch/ScriptResource.h" 44 #include "core/fetch/ScriptResource.h"
45 #include "core/fetch/SubstituteData.h"
46 #include "core/fetch/UniqueIdentifier.h"
45 #include "core/fetch/XSLStyleSheetResource.h" 47 #include "core/fetch/XSLStyleSheetResource.h"
46 #include "core/frame/FrameHost.h" 48 #include "core/frame/FrameHost.h"
47 #include "core/frame/LocalDOMWindow.h" 49 #include "core/frame/LocalDOMWindow.h"
48 #include "core/frame/LocalFrame.h" 50 #include "core/frame/LocalFrame.h"
49 #include "core/frame/Settings.h" 51 #include "core/frame/Settings.h"
50 #include "core/frame/csp/ContentSecurityPolicy.h" 52 #include "core/frame/csp/ContentSecurityPolicy.h"
51 #include "core/html/HTMLElement.h" 53 #include "core/html/HTMLElement.h"
52 #include "core/html/HTMLFrameOwnerElement.h" 54 #include "core/html/HTMLFrameOwnerElement.h"
53 #include "core/html/imports/HTMLImportsController.h" 55 #include "core/html/imports/HTMLImportsController.h"
54 #include "core/inspector/ConsoleMessage.h" 56 #include "core/inspector/ConsoleMessage.h"
55 #include "core/inspector/InspectorInstrumentation.h" 57 #include "core/inspector/InspectorInstrumentation.h"
56 #include "core/loader/DocumentLoader.h" 58 #include "core/loader/DocumentLoader.h"
57 #include "core/loader/FrameLoader.h" 59 #include "core/loader/FrameLoader.h"
58 #include "core/loader/FrameLoaderClient.h" 60 #include "core/loader/FrameLoaderClient.h"
59 #include "core/loader/PingLoader.h" 61 #include "core/loader/PingLoader.h"
60 #include "core/loader/SubstituteData.h"
61 #include "core/loader/UniqueIdentifier.h"
62 #include "core/loader/appcache/ApplicationCacheHost.h" 62 #include "core/loader/appcache/ApplicationCacheHost.h"
63 #include "core/timing/Performance.h" 63 #include "core/timing/Performance.h"
64 #include "core/timing/ResourceTimingInfo.h" 64 #include "core/timing/ResourceTimingInfo.h"
65 #include "core/svg/graphics/SVGImageChromeClient.h" 65 #include "core/svg/graphics/SVGImageChromeClient.h"
66 #include "platform/Logging.h" 66 #include "platform/Logging.h"
67 #include "platform/RuntimeEnabledFeatures.h" 67 #include "platform/RuntimeEnabledFeatures.h"
68 #include "platform/TraceEvent.h" 68 #include "platform/TraceEvent.h"
69 #include "platform/weborigin/KnownPorts.h" 69 #include "platform/weborigin/KnownPorts.h"
70 #include "platform/weborigin/SchemeRegistry.h" 70 #include "platform/weborigin/SchemeRegistry.h"
71 #include "platform/weborigin/SecurityOrigin.h" 71 #include "platform/weborigin/SecurityOrigin.h"
(...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 ResourceLoaderHost::trace(visitor); 1614 ResourceLoaderHost::trace(visitor);
1615 } 1615 }
1616 1616
1617 ResourceFetcher* ResourceFetcher::toResourceFetcher(ResourceLoaderHost* host) 1617 ResourceFetcher* ResourceFetcher::toResourceFetcher(ResourceLoaderHost* host)
1618 { 1618 {
1619 ASSERT(host->objectType() == ResourceLoaderHost::ResourceFetcherType); 1619 ASSERT(host->objectType() == ResourceLoaderHost::ResourceFetcherType);
1620 return static_cast<ResourceFetcher*>(host); 1620 return static_cast<ResourceFetcher*>(host);
1621 } 1621 }
1622 1622
1623 } 1623 }
OLDNEW
« no previous file with comments | « Source/core/fetch/ImageResourceTest.cpp ('k') | Source/core/fetch/SubstituteData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698