Chromium Code Reviews

Side by Side Diff: public/platform/WebURLLoaderClient.h

Issue 131363006: [abort] [do not commit] don't stop loaders on canceled navigations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 51 matching lines...)
62 62
63 // Called when a chunk of renderer-generated metadata is received from the c ache. 63 // Called when a chunk of renderer-generated metadata is received from the c ache.
64 virtual void didReceiveCachedMetadata(WebURLLoader*, const char* data, int d ataLength) { } 64 virtual void didReceiveCachedMetadata(WebURLLoader*, const char* data, int d ataLength) { }
65 65
66 // Called when the load completes successfully. 66 // Called when the load completes successfully.
67 virtual void didFinishLoading(WebURLLoader*, double finishTime) { } 67 virtual void didFinishLoading(WebURLLoader*, double finishTime) { }
68 68
69 // Called when the load completes with an error. 69 // Called when the load completes with an error.
70 virtual void didFail(WebURLLoader*, const WebURLError&) { } 70 virtual void didFail(WebURLLoader*, const WebURLError&) { }
71 71
72 virtual void didRequestStartForFrame(WebURLLoader*) { }
73
72 protected: 74 protected:
73 virtual ~WebURLLoaderClient() { } 75 virtual ~WebURLLoaderClient() { }
74 }; 76 };
75 77
76 } // namespace blink 78 } // namespace blink
77 79
78 #endif 80 #endif
OLDNEW
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine