| 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 #include "components/dom_distiller/ios/distiller_page_factory_ios.h" | 5 #include "components/dom_distiller/ios/distiller_page_factory_ios.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "components/dom_distiller/ios/distiller_favicon_ios.h" |
| 8 #include "components/dom_distiller/ios/distiller_page_ios.h" | 9 #include "components/dom_distiller/ios/distiller_page_ios.h" |
| 9 #include "ios/web/public/browser_state.h" | 10 #include "ios/web/public/browser_state.h" |
| 10 | 11 |
| 11 namespace dom_distiller { | 12 namespace dom_distiller { |
| 12 | 13 |
| 13 DistillerPageFactoryIOS::DistillerPageFactoryIOS( | 14 DistillerPageFactoryIOS::DistillerPageFactoryIOS( |
| 14 web::BrowserState* browser_state) | 15 web::BrowserState* browser_state, |
| 15 : browser_state_(browser_state) { | 16 DistillerFaviconIOS* distiller_favicon) |
| 16 } | 17 : browser_state_(browser_state), distiller_favicon_(distiller_favicon) {} |
| 17 | 18 |
| 18 std::unique_ptr<DistillerPage> DistillerPageFactoryIOS::CreateDistillerPage( | 19 std::unique_ptr<DistillerPage> DistillerPageFactoryIOS::CreateDistillerPage( |
| 19 const gfx::Size& view_size) const { | 20 const gfx::Size& view_size) const { |
| 20 return base::WrapUnique<DistillerPage>(new DistillerPageIOS(browser_state_)); | 21 return base::WrapUnique<DistillerPage>( |
| 22 new DistillerPageIOS(browser_state_, distiller_favicon_)); |
| 21 } | 23 } |
| 22 | 24 |
| 23 std::unique_ptr<DistillerPage> | 25 std::unique_ptr<DistillerPage> |
| 24 DistillerPageFactoryIOS::CreateDistillerPageWithHandle( | 26 DistillerPageFactoryIOS::CreateDistillerPageWithHandle( |
| 25 std::unique_ptr<SourcePageHandle> handle) const { | 27 std::unique_ptr<SourcePageHandle> handle) const { |
| 26 return base::WrapUnique<DistillerPage>(new DistillerPageIOS(browser_state_)); | 28 return base::WrapUnique<DistillerPage>( |
| 29 new DistillerPageIOS(browser_state_, distiller_favicon_)); |
| 27 } | 30 } |
| 28 | 31 |
| 29 } // namespace dom_distiller | 32 } // namespace dom_distiller |
| OLD | NEW |