2015-10-28 12:13:06 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_
|
|
|
|
#define SHELL_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_
|
2015-10-28 12:13:06 +00:00
|
|
|
|
2015-11-02 15:28:45 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2016-01-30 11:19:18 +00:00
|
|
|
#include "content/public/browser/permission_type.h"
|
2015-11-02 15:28:45 +00:00
|
|
|
#include "content/public/common/menu_item.h"
|
2018-04-05 23:13:24 +00:00
|
|
|
#include "content/public/common/referrer.h"
|
2015-12-17 17:27:56 +00:00
|
|
|
#include "content/public/common/stop_find_action.h"
|
2015-10-28 12:13:06 +00:00
|
|
|
#include "native_mate/converter.h"
|
2019-03-22 02:53:21 +00:00
|
|
|
#include "third_party/blink/public/mojom/permissions/permission_status.mojom.h"
|
2015-10-28 12:13:06 +00:00
|
|
|
|
2015-10-31 13:39:07 +00:00
|
|
|
namespace content {
|
|
|
|
struct ContextMenuParams;
|
2015-11-02 15:28:45 +00:00
|
|
|
class WebContents;
|
2018-04-18 01:44:10 +00:00
|
|
|
} // namespace content
|
2015-10-28 12:13:06 +00:00
|
|
|
|
2015-11-02 15:28:45 +00:00
|
|
|
using ContextMenuParamsWithWebContents =
|
|
|
|
std::pair<content::ContextMenuParams, content::WebContents*>;
|
|
|
|
|
2015-10-28 12:13:06 +00:00
|
|
|
namespace mate {
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2015-11-02 15:28:45 +00:00
|
|
|
struct Converter<content::MenuItem::Type> {
|
2015-10-28 12:13:06 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2015-11-02 15:28:45 +00:00
|
|
|
const content::MenuItem::Type& val);
|
2015-10-28 12:13:06 +00:00
|
|
|
};
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2015-11-02 15:28:45 +00:00
|
|
|
struct Converter<ContextMenuParamsWithWebContents> {
|
2015-10-28 12:13:06 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2015-11-02 15:28:45 +00:00
|
|
|
const ContextMenuParamsWithWebContents& val);
|
2015-10-28 12:13:06 +00:00
|
|
|
};
|
|
|
|
|
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);
|
2016-01-30 11:19:18 +00:00
|
|
|
};
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2016-01-30 11:19:18 +00:00
|
|
|
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 <>
|
2016-01-31 21:35:34 +00:00
|
|
|
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,
|
2016-04-26 07:10:27 +00:00
|
|
|
content::WebContents** out);
|
2016-01-31 21:35:34 +00:00
|
|
|
};
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2018-04-05 23:13:24 +00:00
|
|
|
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,
|
2018-04-05 23:13:24 +00:00
|
|
|
content::Referrer* out);
|
|
|
|
};
|
|
|
|
|
2015-10-28 12:13:06 +00:00
|
|
|
} // namespace mate
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_COMMON_NATIVE_MATE_CONVERTERS_CONTENT_CONVERTER_H_
|