summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/extensions/extension_install_ui_factory.cc
blob: 144be8b2841e25d7c8215b4d0ee23b0a650c7757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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