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

Side by Side Diff: third_party/WebKit/Source/web/AssociatedURLLoader.h

Issue 2181243002: Move ThreadableLoader to Oilpan heap (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onheap-bridge-peer-in-worker-threadable-loader
Patch Set: fix Created 4 years, 4 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698