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

Side by Side Diff: Source/core/loader/archive/ArchiveResource.h

Issue 15697017: Move subresource archive loading out of ResourceLoader (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/ResourceLoader.cpp ('k') | Source/core/loader/archive/ArchiveResource.cpp » ('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) 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2010 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 26 matching lines...) Expand all
37 public: 37 public:
38 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU RL&, const ResourceResponse&); 38 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU RL&, const ResourceResponse&);
39 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU RL&, 39 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU RL&,
40 const String& mimeType, const String& textEncoding, const String& frameN ame, 40 const String& mimeType, const String& textEncoding, const String& frameN ame,
41 const ResourceResponse& = ResourceResponse()); 41 const ResourceResponse& = ResourceResponse());
42 42
43 const String& mimeType() const { return m_mimeType; } 43 const String& mimeType() const { return m_mimeType; }
44 const String& textEncoding() const { return m_textEncoding; } 44 const String& textEncoding() const { return m_textEncoding; }
45 const String& frameName() const { return m_frameName; } 45 const String& frameName() const { return m_frameName; }
46 46
47 void ignoreWhenUnarchiving() { m_shouldIgnoreWhenUnarchiving = true; }
48 bool shouldIgnoreWhenUnarchiving() const { return m_shouldIgnoreWhenUnarchiv ing; }
49
50 private: 47 private:
51 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeTyp e, const String& textEncoding, const String& frameName, const ResourceResponse&) ; 48 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeTyp e, const String& textEncoding, const String& frameName, const ResourceResponse&) ;
52 49
53 String m_mimeType; 50 String m_mimeType;
54 String m_textEncoding; 51 String m_textEncoding;
55 String m_frameName; 52 String m_frameName;
56
57 bool m_shouldIgnoreWhenUnarchiving;
58 }; 53 };
59 54
60 } 55 }
61 56
62 #endif // ArchiveResource_h 57 #endif // ArchiveResource_h
OLDNEW
« no previous file with comments | « Source/core/loader/ResourceLoader.cpp ('k') | Source/core/loader/archive/ArchiveResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698