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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 m_client = nullptr; | 77 m_client = nullptr; |
78 return client; | 78 return client; |
79 } | 79 } |
80 | 80 |
81 WebURLLoaderClient* m_client; | 81 WebURLLoaderClient* m_client; |
82 WebURLLoaderOptions m_options; | 82 WebURLLoaderOptions m_options; |
83 | 83 |
84 // An adapter which converts the DocumentThreadableLoaderClient method | 84 // An adapter which converts the DocumentThreadableLoaderClient method |
85 // calls into the WebURLLoaderClient method calls. | 85 // calls into the WebURLLoaderClient method calls. |
86 std::unique_ptr<ClientAdapter> m_clientAdapter; | 86 std::unique_ptr<ClientAdapter> m_clientAdapter; |
87 std::unique_ptr<DocumentThreadableLoader> m_loader; | 87 Persistent<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 |