| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 void didReceiveResourceResponse(unsigned long identifier, DocumentLoader*, c
onst ResourceResponse&, ResourceLoader*); | 94 void didReceiveResourceResponse(unsigned long identifier, DocumentLoader*, c
onst ResourceResponse&, ResourceLoader*); |
| 95 void didReceiveData(unsigned long identifier, const char* data, int dataLeng
th, int encodedDataLength); | 95 void didReceiveData(unsigned long identifier, const char* data, int dataLeng
th, int encodedDataLength); |
| 96 void didFinishLoading(unsigned long identifier, DocumentLoader*, double mono
tonicFinishTime); | 96 void didFinishLoading(unsigned long identifier, DocumentLoader*, double mono
tonicFinishTime); |
| 97 void didReceiveCORSRedirectResponse(unsigned long identifier, DocumentLoader
*, const ResourceResponse&, ResourceLoader*); | 97 void didReceiveCORSRedirectResponse(unsigned long identifier, DocumentLoader
*, const ResourceResponse&, ResourceLoader*); |
| 98 void didFailLoading(unsigned long identifier, DocumentLoader*, const Resourc
eError&); | 98 void didFailLoading(unsigned long identifier, DocumentLoader*, const Resourc
eError&); |
| 99 void didCommitLoad(Frame*, DocumentLoader*); | 99 void didCommitLoad(Frame*, DocumentLoader*); |
| 100 void scriptImported(unsigned long identifier, const String& sourceString); | 100 void scriptImported(unsigned long identifier, const String& sourceString); |
| 101 void didReceiveScriptResponse(unsigned long identifier); | 101 void didReceiveScriptResponse(unsigned long identifier); |
| 102 | 102 |
| 103 void documentThreadableLoaderStartedLoadingForClient(unsigned long identifie
r, ThreadableLoaderClient*); | 103 void documentThreadableLoaderStartedLoadingForClient(unsigned long identifie
r, ThreadableLoaderClient*); |
| 104 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const String& met
hod, const KURL&, bool async, PassRefPtr<FormData> body, const HTTPHeaderMap& he
aders, bool includeCrendentials); | 104 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, PassRefPtr<FormData> body, const HTTPHeaderM
ap& headers, bool includeCrendentials); |
| 105 void didFailXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*); | 105 void didFailXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*); |
| 106 void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned
long identifier, ScriptString sourceString, const String&, const String&, unsign
ed); | 106 void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned
long identifier, ScriptString sourceString, const String&, const String&, unsign
ed); |
| 107 void didReceiveXHRResponse(unsigned long identifier); | 107 void didReceiveXHRResponse(unsigned long identifier); |
| 108 | 108 |
| 109 void willDestroyResource(Resource*); | 109 void willDestroyResource(Resource*); |
| 110 | 110 |
| 111 void applyUserAgentOverride(String* userAgent); | 111 void applyUserAgentOverride(String* userAgent); |
| 112 | 112 |
| 113 // FIXME: InspectorResourceAgent should not be aware of style recalculation. | 113 // FIXME: InspectorResourceAgent should not be aware of style recalculation. |
| 114 void willRecalculateStyle(Document*); | 114 void willRecalculateStyle(Document*); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 // FIXME: InspectorResourceAgent should now be aware of style recalculation. | 171 // FIXME: InspectorResourceAgent should now be aware of style recalculation. |
| 172 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; | 172 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; |
| 173 bool m_isRecalculatingStyle; | 173 bool m_isRecalculatingStyle; |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace WebCore | 176 } // namespace WebCore |
| 177 | 177 |
| 178 | 178 |
| 179 #endif // !defined(InspectorResourceAgent_h) | 179 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |