electron/atom/common/native_mate_converters/content_converter.h

80 lines
2.5 KiB
C
Raw Normal View History

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_
#define ATOM_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_
#include <utility>
#include "content/public/browser/permission_type.h"
#include "content/public/common/menu_item.h"
#include "content/public/common/referrer.h"
2015-12-17 17:27:56 +00:00
#include "content/public/common/stop_find_action.h"
#include "native_mate/converter.h"
#include "third_party/blink/public/platform/modules/permissions/permission_status.mojom.h"
2015-10-31 13:39:07 +00:00
namespace content {
struct ContextMenuParams;
class WebContents;
2018-04-18 01:44:10 +00:00
} // namespace content
using ContextMenuParamsWithWebContents =
std::pair<content::ContextMenuParams, content::WebContents*>;
namespace mate {
2018-04-18 01:44:10 +00:00
template <>
struct Converter<content::MenuItem::Type> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const content::MenuItem::Type& val);
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<ContextMenuParamsWithWebContents> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const ContextMenuParamsWithWebContents& val);
};
2018-04-18 01:44:10 +00:00
template <>
2016-05-23 01:59:39 +00:00
struct Converter<blink::mojom::PermissionStatus> {
2018-04-18 01:44:10 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
2016-05-23 01:59:39 +00:00
blink::mojom::PermissionStatus* out);
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<content::PermissionType> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const content::PermissionType& val);
};
2018-04-18 01:44:10 +00:00
template <>
2015-12-17 17:27:56 +00:00
struct Converter<content::StopFindAction> {
2018-04-18 01:44:10 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
2015-12-17 17:27:56 +00:00
content::StopFindAction* out);
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<content::WebContents*> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
content::WebContents* val);
2018-04-18 01:44:10 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
content::WebContents** out);
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<content::Referrer> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const content::Referrer& val);
2018-04-18 01:44:10 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
content::Referrer* out);
};
} // namespace mate
#endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_