| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class DocumentThreadableLoader; | 43 class DocumentThreadableLoader; |
| 44 class WebLocalFrameImpl; | 44 class WebLocalFrameImpl; |
| 45 | 45 |
| 46 // This class is used to implement WebFrame::createAssociatedURLLoader. | 46 // This class is used to implement WebFrame::createAssociatedURLLoader. |
| 47 class AssociatedURLLoader final : public WebURLLoader { | 47 class AssociatedURLLoader final : public WebURLLoader { |
| 48 WTF_MAKE_NONCOPYABLE(AssociatedURLLoader); | 48 WTF_MAKE_NONCOPYABLE(AssociatedURLLoader); |
| 49 public: | 49 public: |
| 50 AssociatedURLLoader(RawPtr<WebLocalFrameImpl>, const WebURLLoaderOptions&); | 50 AssociatedURLLoader(WebLocalFrameImpl*, const WebURLLoaderOptions&); |
| 51 ~AssociatedURLLoader(); | 51 ~AssociatedURLLoader(); |
| 52 | 52 |
| 53 // WebURLLoader methods: | 53 // WebURLLoader methods: |
| 54 void loadSynchronously(const WebURLRequest&, WebURLResponse&, WebURLError&,
WebData&) override; | 54 void loadSynchronously(const WebURLRequest&, WebURLResponse&, WebURLError&,
WebData&) override; |
| 55 void loadAsynchronously(const WebURLRequest&, WebURLLoaderClient*) override; | 55 void loadAsynchronously(const WebURLRequest&, WebURLLoaderClient*) override; |
| 56 void cancel() override; | 56 void cancel() override; |
| 57 void setDefersLoading(bool) override; | 57 void setDefersLoading(bool) override; |
| 58 void setLoadingTaskRunner(blink::WebTaskRunner*) override; | 58 void setLoadingTaskRunner(blink::WebTaskRunner*) override; |
| 59 | 59 |
| 60 // Called by |m_observer| to handle destruction of the Document associated | 60 // Called by |m_observer| to handle destruction of the Document associated |
| (...skipping 14 matching lines...) Expand all Loading... |
| 75 OwnPtr<DocumentThreadableLoader> m_loader; | 75 OwnPtr<DocumentThreadableLoader> m_loader; |
| 76 | 76 |
| 77 // A ContextLifecycleObserver for cancelling |m_loader| when the Document | 77 // A ContextLifecycleObserver for cancelling |m_loader| when the Document |
| 78 // is detached. | 78 // is detached. |
| 79 Persistent<Observer> m_observer; | 79 Persistent<Observer> m_observer; |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace blink | 82 } // namespace blink |
| 83 | 83 |
| 84 #endif | 84 #endif |
| OLD | NEW |