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