chromium/chrome/browser/extensions/api/module/module.h

// 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.

#ifndef CHROME_BROWSER_EXTENSIONS_API_MODULE_MODULE_H_
#define CHROME_BROWSER_EXTENSIONS_API_MODULE_MODULE_H_

#include "extensions/browser/extension_function.h"
#include "extensions/common/extension_id.h"

namespace extensions {
class ExtensionPrefs;

namespace extension {
// Return the extension's update URL data, if any.
std::string GetUpdateURLData(const ExtensionPrefs* prefs,
                             const ExtensionId& extension_id);
}  // namespace extension

class ExtensionSetUpdateUrlDataFunction : public ExtensionFunction {};

class ExtensionIsAllowedIncognitoAccessFunction : public ExtensionFunction {};

class ExtensionIsAllowedFileSchemeAccessFunction : public ExtensionFunction {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_MODULE_MODULE_H_