diff options
Diffstat (limited to 'WebCore/loader/ThreadableLoaderClient.h')
-rw-r--r-- | WebCore/loader/ThreadableLoaderClient.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/WebCore/loader/ThreadableLoaderClient.h b/WebCore/loader/ThreadableLoaderClient.h index 4fde404..93a8e86 100644 --- a/WebCore/loader/ThreadableLoaderClient.h +++ b/WebCore/loader/ThreadableLoaderClient.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, Google Inc. All rights reserved. + * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -33,6 +33,7 @@ namespace WebCore { + class ResourceError; class ResourceResponse; class ThreadableLoaderClient { @@ -41,9 +42,9 @@ namespace WebCore { virtual void didReceiveResponse(const ResourceResponse&) { } virtual void didReceiveData(const char*, int /*lengthReceived*/) { } - virtual void didFinishLoading(unsigned long /*identifer*/) { } - virtual void didFail() { } - virtual void didGetCancelled() { } + virtual void didFinishLoading(unsigned long /*identifier*/) { } + virtual void didFail(const ResourceError&) { } + virtual void didFailRedirectCheck() { } virtual void didReceiveAuthenticationCancellation(const ResourceResponse&) { } |