Chromium Code Reviews| Index: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
| diff --git a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
| index 79e8336d7cd4c0cb5dbb45cb5293dd69c5222cb4..9339551eddeb4911892bbd9024163bc9d2d8695c 100644 |
| --- a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
| +++ b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
| @@ -54,7 +54,7 @@ class ResourceRequest; |
| class SecurityOrigin; |
| class ThreadableLoaderClient; |
| -class CORE_EXPORT DocumentThreadableLoader final : public ThreadableLoader, private ResourceOwner<RawResource> { |
| +class CORE_EXPORT DocumentThreadableLoader final : public ThreadableLoader, public ResourceOwner<RawResource> { |
|
Nate Chapin
2016/08/03 19:37:01
I don't immediately see why private->public is nec
yhirano
2016/08/09 07:16:44
I thought it necessary, but it's apparently not. R
|
| USING_GARBAGE_COLLECTED_MIXIN(DocumentThreadableLoader); |
| public: |
| static void loadResourceSynchronously(Document&, const ResourceRequest&, ThreadableLoaderClient&, const ThreadableLoaderOptions&, const ResourceLoaderOptions&); |