blob: 1145951ced1438a79421e4da9f9202f9d06960ad [file] [log] [blame]
[email protected]fa517d02013-11-18 09:33:091// Copyright 2013 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 "chrome/browser/extensions/install_observer.h"
6
7namespace extensions {
8
9InstallObserver::ExtensionInstallParams::ExtensionInstallParams(
10 std::string extension_id,
11 std::string extension_name,
12 gfx::ImageSkia installing_icon,
13 bool is_app,
14 bool is_platform_app)
15 : extension_id(extension_id),
16 extension_name(extension_name),
17 installing_icon(installing_icon),
18 is_app(is_app),
benwellscb4422c12015-10-13 23:38:4619 is_platform_app(is_platform_app) {}
[email protected]fa517d02013-11-18 09:33:0920
[email protected]fa517d02013-11-18 09:33:0921} // namespace extensions