blob: 7e506ad4f72e080d4ef35330af4edeb6e5a9d53c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2011 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/pending_extension_info.h"
PendingExtensionInfo::PendingExtensionInfo(
const GURL& update_url,
ShouldAllowInstallPredicate should_allow_install,
bool is_from_sync,
bool install_silently,
Extension::Location install_source)
: update_url_(update_url),
should_allow_install_(should_allow_install),
is_from_sync_(is_from_sync),
install_silently_(install_silently),
install_source_(install_source) {}
PendingExtensionInfo::PendingExtensionInfo()
: update_url_(),
should_allow_install_(NULL),
is_from_sync_(true),
install_silently_(false),
install_source_(Extension::INVALID) {}
|