| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ |
| 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "content/public/browser/web_contents.h" | 9 #include "content/public/browser/web_contents.h" |
| 10 | 10 |
| 11 namespace dom_distiller { | 11 namespace dom_distiller { |
| 12 | 12 |
| 13 class DistillablePageDetector; | 13 class DistillablePageDetector; |
| 14 | 14 |
| 15 // Checks if the page appears to be distillable based on whichever heuristics | 15 // Set the callback to receive the result of whether the page is distillable. |
| 16 // are configured to be used (see dom_distiller::GetDistillerHeuristicsType). | 16 void setCallback(content::WebContents* web_contents, |
| 17 void IsDistillablePage(content::WebContents* web_contents, | 17 base::Callback<void(bool, bool)> callback); |
| 18 bool is_mobile_optimized, | |
| 19 base::Callback<void(bool)> callback); | |
| 20 | |
| 21 // Checks if the web_contents is has opengraph type=article markup. | |
| 22 void IsOpenGraphArticle(content::WebContents* web_contents, | |
| 23 base::Callback<void(bool)> callback); | |
| 24 | |
| 25 // Uses the provided DistillablePageDetector to detect if the page is | |
| 26 // distillable. The passed detector must be alive until after the callback is | |
| 27 // called. | |
| 28 void IsDistillablePageForDetector(content::WebContents* web_contents, | |
| 29 const DistillablePageDetector* detector, | |
| 30 base::Callback<void(bool)> callback); | |
| 31 } | 18 } |
| 32 | 19 |
| 33 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ | 20 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLABLE_PAGE_UTILS_H_ |
| OLD | NEW |