Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Unified Diff: Source/core/loader/DocumentThreadableLoader.h

Issue 300893002: Rename methods in DocumentThreadableLoader for readability (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/loader/DocumentThreadableLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/DocumentThreadableLoader.h
diff --git a/Source/core/loader/DocumentThreadableLoader.h b/Source/core/loader/DocumentThreadableLoader.h
index 9f5c403f42d97fed7a563ee4cde3e307e440a3ed..70a3322cf9450eda13b0975a09d9024ff5010fd6 100644
--- a/Source/core/loader/DocumentThreadableLoader.h
+++ b/Source/core/loader/DocumentThreadableLoader.h
@@ -87,10 +87,13 @@ class DocumentThreadableLoader FINAL : public ThreadableLoader, private Resource
void didTimeout(Timer<DocumentThreadableLoader>*);
void makeCrossOriginAccessRequest(const ResourceRequest&);
- void preflightSuccess();
- void preflightFailure(const String& url, const String& errorDescription);
+ // Loads m_actualRequest.
+ void loadActualRequest();
+ // Clears m_actualRequest and reports access control check failure to
+ // m_client.
+ void handlePreflightFailure(const String& url, const String& errorDescription);
// Investigates the response for the preflight request. If successful,
- // the actual request will be made later in didFinishLoading().
+ // the actual request will be made later in handleSuccessfulFinish().
void handlePreflightResponse(unsigned long identifier, const ResourceResponse&);
void loadRequest(const ResourceRequest&);
« no previous file with comments | « no previous file | Source/core/loader/DocumentThreadableLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698