OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_DISTILLABLE_PAGE_UTILS_H_ | |
6 #define COMPONENTS_DOM_DISTILLER_CONTENT_DISTILLABLE_PAGE_UTILS_H_ | |
7 | |
8 #include "base/callback.h" | |
9 #include "content/public/browser/web_contents.h" | |
10 | |
11 namespace dom_distiller { | |
12 | |
13 class DistillablePageDetector; | |
14 | |
15 void IsOpenGraphArticle(content::WebContents* web_contents, | |
nyquist
2015/04/01 18:12:19
When is this supposed to be called instead of IsDi
cjhopman
2015/04/01 20:59:29
Yeah, it's not really clear here. In a bit I'll ad
| |
16 base::Callback<void(bool)> callback); | |
17 void IsDistillablePage(content::WebContents* web_contents, | |
18 base::Callback<void(bool)> callback); | |
19 // The passed detector must be alive until after the callback is called. | |
20 void IsDistillablePageForDetector(content::WebContents* web_contents, | |
21 const DistillablePageDetector* detector, | |
22 base::Callback<void(bool)> callback); | |
23 } | |
24 | |
25 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_DISTILLABLE_PAGE_UTILS_H_ | |
OLD | NEW |