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

Side by Side Diff: Source/core/platform/network/ResourceHandle.cpp

Issue 14483003: Absolutify paths to platform/chromium, platform/chromium/support, (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 20 matching lines...) Expand all
31 #include "config.h" 31 #include "config.h"
32 #include "ResourceHandle.h" 32 #include "ResourceHandle.h"
33 33
34 #include "NetworkingContext.h" 34 #include "NetworkingContext.h"
35 #include "ResourceError.h" 35 #include "ResourceError.h"
36 #include "ResourceHandleClient.h" 36 #include "ResourceHandleClient.h"
37 #include "ResourceHandleInternal.h" 37 #include "ResourceHandleInternal.h"
38 #include "ResourceRequest.h" 38 #include "ResourceRequest.h"
39 #include "ResourceResponse.h" 39 #include "ResourceResponse.h"
40 #include "SharedBuffer.h" 40 #include "SharedBuffer.h"
41 #include "WrappedResourceRequest.h" 41 #include "core/platform/chromium/support/WrappedResourceRequest.h"
42 #include "WrappedResourceResponse.h" 42 #include "core/platform/chromium/support/WrappedResourceResponse.h"
43 #include <public/Platform.h> 43 #include <public/Platform.h>
44 #include <public/WebURLError.h> 44 #include <public/WebURLError.h>
45 #include <public/WebURLLoader.h> 45 #include <public/WebURLLoader.h>
46 #include <public/WebURLLoaderClient.h> 46 #include <public/WebURLLoaderClient.h>
47 #include <public/WebURLRequest.h> 47 #include <public/WebURLRequest.h>
48 #include <public/WebURLResponse.h> 48 #include <public/WebURLResponse.h>
49 49
50 using namespace WebKit; 50 using namespace WebKit;
51 51
52 namespace WebCore { 52 namespace WebCore {
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 d->didChangePriority(static_cast<WebURLRequest::Priority>(newPriority)); 271 d->didChangePriority(static_cast<WebURLRequest::Priority>(newPriority));
272 } 272 }
273 273
274 // static 274 // static
275 void ResourceHandle::cacheMetadata(const ResourceResponse& response, const Vecto r<char>& data) 275 void ResourceHandle::cacheMetadata(const ResourceResponse& response, const Vecto r<char>& data)
276 { 276 {
277 WebKit::Platform::current()->cacheMetadata(response.url(), response.response Time(), data.data(), data.size()); 277 WebKit::Platform::current()->cacheMetadata(response.url(), response.response Time(), data.data(), data.size());
278 } 278 }
279 279
280 } // namespace WebCore 280 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/platform/mock/ScrollbarThemeMock.cpp ('k') | Source/core/rendering/RenderLayerCompositor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698