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

Side by Side Diff: Source/core/fetch/Resource.h

Issue 414423003: Oilpan: Prepare to move ResourceLoader and ResourceLoaderSet to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: FINAL Created 6 years, 4 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 | « no previous file | Source/core/fetch/Resource.cpp » ('j') | Source/core/fetch/ResourceFetcher.h » ('J')
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) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
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 6
7 This library is free software; you can redistribute it and/or 7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public 8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version. 10 version 2 of the License, or (at your option) any later version.
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 ResourceRequest m_request; 319 ResourceRequest m_request;
320 ResourceResponse m_redirectResponse; 320 ResourceResponse m_redirectResponse;
321 }; 321 };
322 const Vector<RedirectPair>& redirectChain() const { return m_redirectChain; } 322 const Vector<RedirectPair>& redirectChain() const { return m_redirectChain; }
323 323
324 virtual bool isSafeToUnlock() const { return false; } 324 virtual bool isSafeToUnlock() const { return false; }
325 virtual void destroyDecodedDataIfPossible() { } 325 virtual void destroyDecodedDataIfPossible() { }
326 326
327 ResourceRequest m_resourceRequest; 327 ResourceRequest m_resourceRequest;
328 AtomicString m_accept; 328 AtomicString m_accept;
329 RefPtr<ResourceLoader> m_loader; 329 RefPtrWillBeMember<ResourceLoader> m_loader;
330 ResourceLoaderOptions m_options; 330 ResourceLoaderOptions m_options;
331 331
332 ResourceResponse m_response; 332 ResourceResponse m_response;
333 double m_responseTimestamp; 333 double m_responseTimestamp;
334 334
335 RefPtr<SharedBuffer> m_data; 335 RefPtr<SharedBuffer> m_data;
336 Timer<Resource> m_cancelTimer; 336 Timer<Resource> m_cancelTimer;
337 337
338 private: 338 private:
339 bool addClientToSet(ResourceClient*); 339 bool addClientToSet(ResourceClient*);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 const char* ResourceTypeName(Resource::Type); 403 const char* ResourceTypeName(Resource::Type);
404 #endif 404 #endif
405 405
406 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ 406 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \
407 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \ 407 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \
408 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); } 408 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); }
409 409
410 } 410 }
411 411
412 #endif 412 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/fetch/Resource.cpp » ('j') | Source/core/fetch/ResourceFetcher.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698