summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/external_component_loader.cc
blob: bec5d2f9e99b90529eaa13f90df9723e127d6370 (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) 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/external_component_loader.h"

#include "base/values.h"
#include "chrome/common/extensions/extension_constants.h"

namespace extensions {

ExternalComponentLoader::ExternalComponentLoader() {}

ExternalComponentLoader::~ExternalComponentLoader() {}

void ExternalComponentLoader::StartLoading() {
  prefs_.reset(new base::DictionaryValue());
  std::string appId = extension_misc::kInAppPaymentsSupportAppId;
  prefs_->SetString(appId + ".external_update_url",
                    extension_urls::GetWebstoreUpdateUrl().spec());
  LoadFinished();
}

}  // namespace extensions