// Copyright (c) 2009 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.

// Exposes extension APIs into the extension process.

#ifndef CHROME_RENDERER_EXTENSIONS_EXTENSION_PROCESS_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_EXTENSION_PROCESS_BINDINGS_H_

#include <map>
#include <string>
#include <vector>

#include "chrome/common/view_types.h"
#include "v8/include/v8.h"

class GURL;
class URLPattern;

namespace WebKit {
class WebView;
}

class ExtensionProcessBindings {
 public:
  static void SetFunctionNames(const std::vector<std::string>& names);
  static v8::Extension* Get();

  // Handles a response to an API request.
  static void HandleResponse(int request_id, bool success,
                             const std::string& response,
                             const std::string& error);

  // Sets the page action ids for a particular extension.
  static void SetPageActions(const std::string& extension_id,
                             const std::vector<std::string>& page_actions);

  // Sets the API permissions for a particular extension.
  static void SetAPIPermissions(const std::string& extension_id,
                                const std::vector<std::string>& permissions);

  // Sets the host permissions for a particular extension.
  static void SetHostPermissions(const GURL& extension_url,
                                 const std::vector<URLPattern>& permissions);

  // Set l10n messages for a particular extension.
  static void SetL10nMessages(
      const std::string& extension_id,
      const std::map<std::string, std::string>& l10n_messages);

  // Check if the extension in the currently running context has permission to
  // access the given extension function. Must be called with a valid V8
  // context in scope.
  static bool CurrentContextHasPermission(const std::string& function_name);

  // Throw a V8 exception indicating that permission to access function_name was
  // denied. Must be called with a valid V8 context in scope.
  static v8::Handle<v8::Value> ThrowPermissionDeniedException(
      const std::string& function_name);

  // For EXTENSION_* |type| values, adds/replaces a special class name on to
  // the document element (e.g. "extension_toolstrip", "extension_mole") so
  // that the page can use CSS rules to control its display appropriately.
  static void SetViewType(WebKit::WebView* view, ViewType::Type type);
};

#endif  // CHROME_RENDERER_EXTENSIONS_EXTENSION_PROCESS_BINDINGS_H_