summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/install_observer.cc
blob: 37c7565cc6b0369e7629de1d3b3778b324d92fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2013 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/extensions/install_observer.h"

namespace extensions {

InstallObserver::ExtensionInstallParams::ExtensionInstallParams(
    std::string extension_id,
    std::string extension_name,
    gfx::ImageSkia installing_icon,
    bool is_app,
    bool is_platform_app)
        : extension_id(extension_id),
          extension_name(extension_name),
          installing_icon(installing_icon),
          is_app(is_app),
          is_platform_app(is_platform_app),
          is_ephemeral(false) {}

}  // namespace extensions