Extensions cleanup: Merge IsSyncableApp+Extension, ShouldSyncApp+Extension
[chromium-blink-merge.git] / chrome / browser / extensions / install_observer.cc
blob37c7565cc6b0369e7629de1d3b3778b324d92fe1
1 // 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.
5 #include "chrome/browser/extensions/install_observer.h"
7 namespace extensions {
9 InstallObserver::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),
19 is_platform_app(is_platform_app),
20 is_ephemeral(false) {}
22 } // namespace extensions