Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 #include "ios/chrome/browser/physical_web/create_physical_web_data_source.h" | |
| 6 | |
| 7 #include "base/memory/ptr_util.h" | |
| 8 #import "ios/chrome/common/physical_web/ios_chrome_physical_web_data_source.h" | |
| 9 | |
| 10 std::unique_ptr<PhysicalWebDataSource> CreateIOSChromePhysicalWebDataSource() { | |
| 11 return base::WrapUnique(new IOSChromePhysicalWebDataSource()); | |
|
sdefresne
2016/08/02 22:23:36
return base::MakeUnique<IOSChromePhysicalWebDataSo
mattreynolds
2016/08/04 00:56:12
Done.
| |
| 12 } | |
| OLD | NEW |