Index: components/dom_distiller/ios/distiller_favicon_ios.h |
diff --git a/components/dom_distiller/ios/distiller_favicon_ios.h b/components/dom_distiller/ios/distiller_favicon_ios.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..875840219bbf8bc965db56ff280f4b68f1f819ad |
--- /dev/null |
+++ b/components/dom_distiller/ios/distiller_favicon_ios.h |
@@ -0,0 +1,30 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef COMPONENTS_DOM_DISTILLER_IOS_DISTILLER_FAVICON_IOS_H_ |
+#define COMPONENTS_DOM_DISTILLER_IOS_DISTILLER_FAVICON_IOS_H_ |
+ |
+#include <vector> |
+ |
+namespace ios { |
+class WebControllerProvider; |
+} |
+ |
+namespace web { |
+struct FaviconURL; |
+} |
+ |
+class GURL; |
+ |
+namespace dom_distiller { |
+ |
+class DistillerFaviconIOS { |
+ public: |
+ virtual std::unique_ptr<ios::WebControllerProvider> CreateProvider( |
+ const GURL& page_url) = 0; |
+}; |
+ |
+} // namespace dom_distiller |
+ |
+#endif // COMPONENTS_DOM_DISTILLER_IOS_DISTILLER_FAVICON_IOS_H_ |