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

Side by Side Diff: components/dom_distiller/ios/distiller_page_factory_ios.mm

Issue 2604773002: Create distiller files for Reading List. (Closed)
Patch Set: Created 3 years, 12 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
OLDNEW
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_page_ios.h" 8 #include "components/dom_distiller/ios/distiller_page_ios.h"
9 #include "components/dom_distiller/ios/favicon_web_state_dispatcher.h"
10 #include "ios/web/public/browser_state.h" 9 #include "ios/web/public/browser_state.h"
10 #include "ios/web/public/web_state/web_state.h"
11 11
12 namespace dom_distiller { 12 namespace dom_distiller {
13 13
14 DistillerPageFactoryIOS::DistillerPageFactoryIOS( 14 DistillerPageFactoryIOS::DistillerPageFactoryIOS(
15 std::unique_ptr<FaviconWebStateDispatcher> web_state_dispatcher) 15 web::BrowserState* browser_state)
16 : web_state_dispatcher_(std::move(web_state_dispatcher)) {} 16 : browser_state_(browser_state) {}
17 17
18 DistillerPageFactoryIOS::~DistillerPageFactoryIOS() {} 18 DistillerPageFactoryIOS::~DistillerPageFactoryIOS() {}
19 19
20 std::unique_ptr<DistillerPage> DistillerPageFactoryIOS::CreateDistillerPage( 20 std::unique_ptr<DistillerPage> DistillerPageFactoryIOS::CreateDistillerPage(
21 const gfx::Size& view_size) const { 21 const gfx::Size& view_size) const {
22 return base::MakeUnique<DistillerPageIOS>(web_state_dispatcher_.get()); 22 const web::WebState::CreateParams web_state_create_params(browser_state_);
23 std::unique_ptr<web::WebState> web_state_unique =
24 web::WebState::Create(web_state_create_params);
25 return base::MakeUnique<DistillerPageIOS>(std::move(web_state_unique));
23 } 26 }
24 27
25 std::unique_ptr<DistillerPage> 28 std::unique_ptr<DistillerPage>
26 DistillerPageFactoryIOS::CreateDistillerPageWithHandle( 29 DistillerPageFactoryIOS::CreateDistillerPageWithHandle(
27 std::unique_ptr<SourcePageHandle> handle) const { 30 std::unique_ptr<SourcePageHandle> handle) const {
28 return base::MakeUnique<DistillerPageIOS>(web_state_dispatcher_.get()); 31 const web::WebState::CreateParams web_state_create_params(browser_state_);
32 std::unique_ptr<web::WebState> web_state_unique =
33 web::WebState::Create(web_state_create_params);
34 return base::MakeUnique<DistillerPageIOS>(std::move(web_state_unique));
29 } 35 }
30 36
31 } // namespace dom_distiller 37 } // namespace dom_distiller
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698