OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 29 matching lines...) Expand all Loading... |
40 class ResourceLoader; | 40 class ResourceLoader; |
41 class ResourceRequest; | 41 class ResourceRequest; |
42 class ResourceResponse; | 42 class ResourceResponse; |
43 | 43 |
44 struct FetchInitiatorInfo; | 44 struct FetchInitiatorInfo; |
45 | 45 |
46 class ResourceLoaderHost : public WillBeGarbageCollectedMixin { | 46 class ResourceLoaderHost : public WillBeGarbageCollectedMixin { |
47 public: | 47 public: |
48 virtual void incrementRequestCount(const Resource*) = 0; | 48 virtual void incrementRequestCount(const Resource*) = 0; |
49 virtual void decrementRequestCount(const Resource*) = 0; | 49 virtual void decrementRequestCount(const Resource*) = 0; |
50 virtual void didLoadResource() = 0; | 50 virtual void didLoadResource(Resource*) = 0; |
51 virtual void redirectReceived(Resource*, const ResourceResponse&) = 0; | 51 virtual void redirectReceived(Resource*, const ResourceResponse&) = 0; |
52 | 52 |
53 virtual void didFinishLoading(Resource*, double finishTime, int64_t encodedD
ataLength) = 0; | 53 virtual void didFinishLoading(const Resource*, double finishTime, int64_t en
codedDataLength) = 0; |
54 virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority,
int intraPriorityValue) = 0; | 54 virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority,
int intraPriorityValue) = 0; |
55 virtual void didFailLoading(const Resource*, const ResourceError&) = 0; | 55 virtual void didFailLoading(const Resource*, const ResourceError&) = 0; |
56 | 56 |
57 virtual void willSendRequest(unsigned long identifier, ResourceRequest&, con
st ResourceResponse& redirectResponse, const FetchInitiatorInfo&) = 0; | 57 virtual void willSendRequest(unsigned long identifier, ResourceRequest&, con
st ResourceResponse& redirectResponse, const FetchInitiatorInfo&) = 0; |
58 virtual void didReceiveResponse(const Resource*, const ResourceResponse&) =
0; | 58 virtual void didReceiveResponse(const Resource*, const ResourceResponse&) =
0; |
59 virtual void didReceiveData(const Resource*, const char* data, int dataLengt
h, int encodedDataLength) = 0; | 59 virtual void didReceiveData(const Resource*, const char* data, int dataLengt
h, int encodedDataLength) = 0; |
60 virtual void didDownloadData(const Resource*, int dataLength, int encodedDat
aLength) = 0; | 60 virtual void didDownloadData(const Resource*, int dataLength, int encodedDat
aLength) = 0; |
61 | 61 |
62 virtual void subresourceLoaderFinishedLoadingOnePart(ResourceLoader*) = 0; | 62 virtual void subresourceLoaderFinishedLoadingOnePart(ResourceLoader*) = 0; |
63 virtual void didInitializeResourceLoader(ResourceLoader*) = 0; | 63 virtual void didInitializeResourceLoader(ResourceLoader*) = 0; |
(...skipping 13 matching lines...) Expand all Loading... |
77 virtual void derefResourceLoaderHost() = 0; | 77 virtual void derefResourceLoaderHost() = 0; |
78 | 78 |
79 void ref() { refResourceLoaderHost(); } | 79 void ref() { refResourceLoaderHost(); } |
80 void deref() { derefResourceLoaderHost(); } | 80 void deref() { derefResourceLoaderHost(); } |
81 #endif | 81 #endif |
82 }; | 82 }; |
83 | 83 |
84 } | 84 } |
85 | 85 |
86 #endif // ResourceLoaderHost_h | 86 #endif // ResourceLoaderHost_h |
OLD | NEW |