| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(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&, int64_t& encodedDataLength) 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 |
| 61 // with the frame given to the constructor. | 61 // with the frame given to the constructor. |
| 62 void documentDestroyed(); | 62 void documentDestroyed(); |
| 63 | 63 |
| 64 // Called by ClientAdapter to handle completion of loading. | 64 // Called by ClientAdapter to handle completion of loading. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 87 std::unique_ptr<DocumentThreadableLoader> m_loader; | 87 std::unique_ptr<DocumentThreadableLoader> m_loader; |
| 88 | 88 |
| 89 // A ContextLifecycleObserver for cancelling |m_loader| when the Document | 89 // A ContextLifecycleObserver for cancelling |m_loader| when the Document |
| 90 // is detached. | 90 // is detached. |
| 91 Persistent<Observer> m_observer; | 91 Persistent<Observer> m_observer; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace blink | 94 } // namespace blink |
| 95 | 95 |
| 96 #endif | 96 #endif |
| OLD | NEW |