| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 class Resource; | 39 class Resource; |
| 40 class ResourceFetcher; | 40 class ResourceFetcher; |
| 41 class LocalFrame; | 41 class LocalFrame; |
| 42 class ResourceLoader; | 42 class ResourceLoader; |
| 43 class ResourceRequest; | 43 class ResourceRequest; |
| 44 class ResourceResponse; | 44 class ResourceResponse; |
| 45 | 45 |
| 46 struct FetchInitiatorInfo; | 46 struct FetchInitiatorInfo; |
| 47 | 47 |
| 48 class ResourceLoaderHost : public DummyBase<void> { | 48 class ResourceLoaderHost { |
| 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 | 53 |
| 54 virtual void didFinishLoading(const Resource*, double finishTime, int64_t en
codedDataLength) = 0; | 54 virtual void didFinishLoading(const Resource*, double finishTime, int64_t en
codedDataLength) = 0; |
| 55 virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority,
int intraPriorityValue) = 0; | 55 virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority,
int intraPriorityValue) = 0; |
| 56 virtual void didFailLoading(const Resource*, const ResourceError&) = 0; | 56 virtual void didFailLoading(const Resource*, const ResourceError&) = 0; |
| 57 | 57 |
| 58 virtual void willSendRequest(unsigned long identifier, ResourceRequest&, con
st ResourceResponse& redirectResponse, const FetchInitiatorInfo&) = 0; | 58 virtual void willSendRequest(unsigned long identifier, ResourceRequest&, con
st ResourceResponse& redirectResponse, const FetchInitiatorInfo&) = 0; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 74 virtual void derefResourceLoaderHost() = 0; | 74 virtual void derefResourceLoaderHost() = 0; |
| 75 | 75 |
| 76 void ref() { refResourceLoaderHost(); } | 76 void ref() { refResourceLoaderHost(); } |
| 77 void deref() { derefResourceLoaderHost(); } | 77 void deref() { derefResourceLoaderHost(); } |
| 78 #endif | 78 #endif |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } | 81 } |
| 82 | 82 |
| 83 #endif // ResourceLoaderHost_h | 83 #endif // ResourceLoaderHost_h |
| OLD | NEW |