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

Side by Side Diff: ios/chrome/browser/reading_list/reading_list_distiller_page.h

Issue 2724583002: [Reading List] Check web state after the distillation delay. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | ios/chrome/browser/reading_list/reading_list_distiller_page.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_ 5 #ifndef IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_
6 #define IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_ 6 #define IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 void HandleGoogleCachedAMPPage(); 77 void HandleGoogleCachedAMPPage();
78 // Handles the JavaScript response. If the URL of the iframe is returned, 78 // Handles the JavaScript response. If the URL of the iframe is returned,
79 // triggers a navigation to it. Stop distillation of the page there as the new 79 // triggers a navigation to it. Stop distillation of the page there as the new
80 // load will trigger a new distillation. 80 // load will trigger a new distillation.
81 bool HandleGoogleCachedAMPPageJavaScriptResult(id result, id error); 81 bool HandleGoogleCachedAMPPageJavaScriptResult(id result, id error);
82 // Continue the distillation on the page that is currently loaded in 82 // Continue the distillation on the page that is currently loaded in
83 // |CurrentWebState()|. 83 // |CurrentWebState()|.
84 void ContinuePageDistillation(); 84 void ContinuePageDistillation();
85 85
86 // Continues distillation by calling superclass |OnLoadURLDone|. 86 // Continues distillation by calling superclass |OnLoadURLDone|.
87 void DelayedOnLoadURLDone(); 87 void DelayedOnLoadURLDone(int delayed_task_id);
88 GURL original_url_; 88 GURL original_url_;
89 89
90 FaviconWebStateDispatcher* web_state_dispatcher_; 90 FaviconWebStateDispatcher* web_state_dispatcher_;
91 ReadingListDistillerPageDelegate* delegate_; 91 ReadingListDistillerPageDelegate* delegate_;
92 int delayed_task_id_;
92 base::WeakPtrFactory<ReadingListDistillerPage> weak_ptr_factory_; 93 base::WeakPtrFactory<ReadingListDistillerPage> weak_ptr_factory_;
93 94
94 DISALLOW_COPY_AND_ASSIGN(ReadingListDistillerPage); 95 DISALLOW_COPY_AND_ASSIGN(ReadingListDistillerPage);
95 }; 96 };
96 97
97 } // namespace reading_list 98 } // namespace reading_list
98 99
99 #endif // IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_ 100 #endif // IOS_CHROME_BROWSER_READING_LIST_READING_LIST_DISTILLER_PAGE_H_
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/reading_list/reading_list_distiller_page.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698