blob: 144be8b2841e25d7c8215b4d0ee23b0a650c7757 [file] [log] [blame]
// Copyright 2014 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 "chrome/browser/ui/extensions/extension_install_ui_factory.h"
#include "chrome/browser/ui/extensions/extension_install_ui_default.h"
namespace extensions {
scoped_ptr<ExtensionInstallUI> CreateExtensionInstallUI(
content::BrowserContext* context) {
return scoped_ptr<ExtensionInstallUI>(new ExtensionInstallUIDefault(context));
}
} // namespace extensions