blob: 58cd9350d71ba1e07d1886728a4403f1094377ee [file] [log] [blame]
// 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.
#include "base/memory/ptr_util.h"
#import "ios/chrome/browser/providers/chromium_browser_provider.h"
#import "ios/public/provider/chrome/browser/chrome_browser_provider.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace ios {
std::unique_ptr<ChromeBrowserProvider> CreateChromeBrowserProvider() {
return base::MakeUnique<ChromiumBrowserProvider>();
}
} // namespace ios