| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_OFFLINE_PAGES_OFFLINER_USER_DATA_H_ |
| 6 #define CHROME_BROWSER_OFFLINE_PAGES_OFFLINER_USER_DATA_H_ |
| 7 |
| 8 #include "chrome/browser/offline_pages/background_loader_offliner.h" |
| 9 #include "chrome/browser/offline_pages/resource_loading_observer.h" |
| 10 #include "components/offline_pages/features/features.h" |
| 11 #include "content/public/browser/web_contents_user_data.h" |
| 12 |
| 13 namespace offline_pages { |
| 14 |
| 15 class OfflinerUserData : public content::WebContentsUserData<OfflinerUserData> { |
| 16 public: |
| 17 static void AddToWebContents(content::WebContents* webcontents, |
| 18 BackgroundLoaderOffliner* offliner); |
| 19 |
| 20 static BackgroundLoaderOffliner* OfflinerFromWebContents( |
| 21 content::WebContents* webcontents); |
| 22 |
| 23 static ResourceLoadingObserver* ResourceLoadingObserverFromWebContents( |
| 24 content::WebContents* webcontents); |
| 25 |
| 26 explicit OfflinerUserData(BackgroundLoaderOffliner* offliner) { |
| 27 offliner_ = offliner; |
| 28 } |
| 29 BackgroundLoaderOffliner* offliner() { return offliner_; } |
| 30 |
| 31 private: |
| 32 // The offliner that the WebContents is attached to. The offliner owns the |
| 33 // Delegate which owns the WebContents that this data is attached to. |
| 34 // Therefore, its lifetime should exceed that of the WebContents, so this |
| 35 // should always be non-null. |
| 36 BackgroundLoaderOffliner* offliner_; |
| 37 }; |
| 38 |
| 39 } // namespace offline_pages |
| 40 |
| 41 #endif // CHROME_BROWSER_OFFLINE_PAGES_OFFLINER_USER_DATA_H_ |
| OLD | NEW |