chromium/extensions/common/manifest_url_handlers.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/common/manifest_url_handlers.h"

#include <memory>
#include <utility>

#include "base/files/file_util.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "extensions/common/error_utils.h"
#include "extensions/common/extension_urls.h"
#include "extensions/common/file_util.h"
#include "extensions/common/manifest.h"
#include "extensions/common/manifest_constants.h"
#include "extensions/common/manifest_handlers/shared_module_info.h"
#include "extensions/strings/grit/extensions_strings.h"
#include "ui/base/l10n/l10n_util.h"

namespace extensions {

keys;
errors;

// static
const GURL& ManifestURL::Get(const Extension* extension,
                             const std::string& key) {}

// static
GURL ManifestURL::GetHomepageURL(const Extension* extension) {}

// static
bool ManifestURL::SpecifiedHomepageURL(const Extension* extension) {}

// static
const GURL& ManifestURL::GetManifestHomePageURL(const Extension* extension) {}

// static
GURL ManifestURL::GetWebStoreURL(const Extension* extension) {}

// static
const GURL& ManifestURL::GetUpdateURL(const Extension* extension) {}

// static
bool ManifestURL::UpdatesFromGallery(const Extension* extension) {}

// static
const GURL& ManifestURL::GetAboutPage(const Extension* extension) {}

// static
GURL ManifestURL::GetDetailsURL(const Extension* extension) {}

HomepageURLHandler::HomepageURLHandler() {}

HomepageURLHandler::~HomepageURLHandler() {}

bool HomepageURLHandler::Parse(Extension* extension, std::u16string* error) {}

base::span<const char* const> HomepageURLHandler::Keys() const {}

UpdateURLHandler::UpdateURLHandler() {}

UpdateURLHandler::~UpdateURLHandler() {}

bool UpdateURLHandler::Parse(Extension* extension, std::u16string* error) {}

base::span<const char* const> UpdateURLHandler::Keys() const {}

AboutPageHandler::AboutPageHandler() {}

AboutPageHandler::~AboutPageHandler() {}

bool AboutPageHandler::Parse(Extension* extension, std::u16string* error) {}

bool AboutPageHandler::Validate(const Extension* extension,
                                std::string* error,
                                std::vector<InstallWarning>* warnings) const {}

base::span<const char* const> AboutPageHandler::Keys() const {}

}  // namespace extensions