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

Unified Diff: components/dom_distiller/ios/distiller_page_ios.h

Issue 2541093002: DO NOT COMMIT (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/ios/distiller_page_ios.h
diff --git a/components/dom_distiller/ios/distiller_page_ios.h b/components/dom_distiller/ios/distiller_page_ios.h
index 9c799852b91e05c62ddb66aca1555eecaadd07e4..7b24252f384ea453a5e9f075ca8664cacbc113ac 100644
--- a/components/dom_distiller/ios/distiller_page_ios.h
+++ b/components/dom_distiller/ios/distiller_page_ios.h
@@ -23,13 +23,15 @@ class BrowserState;
namespace dom_distiller {
+class DistillerFaviconIOS;
class DistillerWebStateObserver;
// Loads URLs and injects JavaScript into a page, extracting the distilled page
// content.
class DistillerPageIOS : public DistillerPage {
public:
- explicit DistillerPageIOS(web::BrowserState* browser_state);
+ explicit DistillerPageIOS(web::BrowserState* browser_state,
+ DistillerFaviconIOS* distiller_favicon);
~DistillerPageIOS() override;
protected:
@@ -48,11 +50,12 @@ class DistillerPageIOS : public DistillerPage {
// Converts result of WKWebView script evaluation to base::Value
std::unique_ptr<base::Value> ValueResultFromScriptResult(id wk_result);
- web::BrowserState* browser_state_;
+ // web::BrowserState* browser_state_;
GURL url_;
std::string script_;
std::unique_ptr<ios::WebControllerProvider> provider_;
std::unique_ptr<DistillerWebStateObserver> web_state_observer_;
+ DistillerFaviconIOS* distiller_favicon_;
base::WeakPtrFactory<DistillerPageIOS> weak_ptr_factory_;
};
« no previous file with comments | « components/dom_distiller/ios/distiller_page_factory_ios.mm ('k') | components/dom_distiller/ios/distiller_page_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698